diff --git a/.github/workflows/cli_ci.yaml b/.github/workflows/cli_ci.yaml index c2ef80ecd36..07a3064b2a8 100644 --- a/.github/workflows/cli_ci.yaml +++ b/.github/workflows/cli_ci.yaml @@ -115,6 +115,7 @@ jobs: target/release/anarlog auth --help target/release/anarlog meetings --help target/release/anarlog mcp --help + target/release/anarlog proposals --help if doctor_output="$(target/release/anarlog --json --db-path "$RUNNER_TEMP/missing.db" doctor)"; then echo "doctor unexpectedly reported a missing database as ready" exit 1 diff --git a/Cargo.lock b/Cargo.lock index 942a4e2be27..7366d08c56a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -233,6 +233,7 @@ dependencies = [ "tiptap", "tokio", "utoipa", + "uuid", ] [[package]] @@ -373,6 +374,7 @@ dependencies = [ "reqwest 0.13.2", "rmcp", "rpassword", + "schemars 1.2.1", "sentry", "serde", "serde_json", diff --git a/agent-plugins/anarlog/skills/anarlog/SKILL.md b/agent-plugins/anarlog/skills/anarlog/SKILL.md index 06b0a0c4938..a20b7a071a4 100644 --- a/agent-plugins/anarlog/skills/anarlog/SKILL.md +++ b/agent-plugins/anarlog/skills/anarlog/SKILL.md @@ -5,11 +5,11 @@ description: Query Anarlog meetings, notes, summaries, transcripts, participants # Anarlog -Use Anarlog's read-only interfaces. Prefer MCP when its tools are connected. Otherwise use the `anarlog` CLI with `--json`. +Use Anarlog's local interfaces. Prefer MCP when its tools are connected. Otherwise use the `anarlog` CLI with `--json`. Meeting reads are safe. Writes are limited to staging proposals. ## Choose a transport -1. If `list_meetings`, `get_meeting`, `get_meeting_transcript`, and `get_recurring_meeting_history` are available, use them. +1. If `list_meetings`, `get_meeting`, `get_meeting_transcript`, `get_recurring_meeting_history`, `propose_summary_edit`, `propose_memo_edit`, `list_proposals`, `get_proposal`, and `decline_proposal` are available, use them. 2. Otherwise, check `anarlog --version` and use CLI commands with `--json`. 3. If neither is available, direct the user to [installation](https://docs.anarlog.so/installation). Do not install software unless the user asks. @@ -35,7 +35,7 @@ See [CLI commands](references/cli.md) and [MCP tools](references/mcp.md). - Treat meeting content as private user data. - Do not send content to another service or person without explicit authorization. -- Do not claim to update meetings. The CLI and MCP server cannot change Anarlog data. +- Do not claim to update meetings. CLI and MCP can only stage a proposal. A human applies or declines it in the Anarlog desktop app. - CLI export can create a file. Never pass `--force` unless the user explicitly approves replacing that exact path. - If search results are ambiguous, ask the user to choose a meeting. diff --git a/agent-plugins/anarlog/skills/anarlog/references/cli.md b/agent-plugins/anarlog/skills/anarlog/references/cli.md index e6eb158213c..38861a9abd7 100644 --- a/agent-plugins/anarlog/skills/anarlog/references/cli.md +++ b/agent-plugins/anarlog/skills/anarlog/references/cli.md @@ -23,8 +23,14 @@ anarlog --json meetings get MEETING_ID anarlog --json meetings note MEETING_ID --kind note anarlog --json meetings note MEETING_ID --kind summary anarlog --json meetings history MEETING_ID --limit 20 --offset 0 +anarlog --json proposals list --meeting MEETING_ID +anarlog --json proposals create --meeting MEETING_ID --kind summary --content "Replacement markdown" +anarlog --json proposals show PROPOSAL_ID +anarlog --json proposals decline PROPOSAL_ID ``` +`proposals create` stages a pending edit. Do not claim the meeting changed. A human applies or declines it in the Anarlog desktop app. + `doctor` exits with status 1 when its response contains `ready: false`. Read transcripts in bounded word pages: diff --git a/agent-plugins/anarlog/skills/anarlog/references/mcp.md b/agent-plugins/anarlog/skills/anarlog/references/mcp.md index e14b5b2badd..926c8e5a505 100644 --- a/agent-plugins/anarlog/skills/anarlog/references/mcp.md +++ b/agent-plugins/anarlog/skills/anarlog/references/mcp.md @@ -1,6 +1,6 @@ # MCP tools and resources -All tools are read-only and idempotent. +Read tools are idempotent. Proposal tools insert or decline staged edits; they never apply those edits to the meeting. | Tool | Use | | ------------------------------- | ------------------------------------------------------------------------------------------------------- | @@ -8,6 +8,11 @@ All tools are read-only and idempotent. | `get_meeting` | Read metadata, canonical note, summaries, participants, and action items. | | `get_meeting_transcript` | Read a transcript page. Start with `limit: 200`; continue from `pagination.next_offset` only as needed. | | `get_recurring_meeting_history` | Find meetings from the same recurring series as a known meeting. | +| `propose_summary_edit` | Stage a complete summary replacement. Pass `target_id` when multiple summaries exist. | +| `propose_memo_edit` | Stage a complete memo replacement. | +| `list_proposals` | List staged proposals. Defaults to `status: pending`. | +| `get_proposal` | Read one proposal and its unified `diff`. | +| `decline_proposal` | Discard a pending proposal without changing the meeting. | Transcript limits are measured in words. The default is 200 and the maximum is 500. diff --git a/apps/cli/Cargo.toml b/apps/cli/Cargo.toml index 8847b45f266..51d99f8428b 100644 --- a/apps/cli/Cargo.toml +++ b/apps/cli/Cargo.toml @@ -21,6 +21,7 @@ dirs = { workspace = true } reqwest = { workspace = true } rmcp = { workspace = true, features = ["server", "transport-io"] } rpassword = { workspace = true } +schemars = { workspace = true } sentry = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } diff --git a/apps/cli/src/cli.rs b/apps/cli/src/cli.rs index 6f9c1d6c9a3..cdddd0a8173 100644 --- a/apps/cli/src/cli.rs +++ b/apps/cli/src/cli.rs @@ -53,9 +53,24 @@ impl Args { MeetingCommand::History { .. } => "meetings_history", MeetingCommand::Export { .. } => "meetings_export", }, + Command::Proposals { command } => match command { + ProposalCommand::Create { .. } => "proposals_create", + ProposalCommand::List { .. } => "proposals_list", + ProposalCommand::Show { .. } => "proposals_show", + ProposalCommand::Decline { .. } => "proposals_decline", + }, Command::Mcp => "mcp", } } + + pub fn needs_write(&self) -> bool { + matches!( + self.command, + Command::Proposals { + command: ProposalCommand::Create { .. } | ProposalCommand::Decline { .. }, + } | Command::Mcp + ) + } } #[derive(Debug, Subcommand)] @@ -72,10 +87,62 @@ pub enum Command { #[command(subcommand)] command: MeetingCommand, }, - /// Run the read-only Anarlog MCP server over stdio + /// Propose meeting edits for desktop review + Proposals { + #[command(subcommand)] + command: ProposalCommand, + }, + /// Run the Anarlog MCP server over stdio Mcp, } +#[derive(Debug, Subcommand)] +pub enum ProposalCommand { + /// Stage a summary or memo replacement for desktop review + Create { + #[arg(long = "meeting")] + meeting_id: String, + #[arg(long, value_enum)] + kind: ProposalKind, + #[arg(long = "target")] + target_id: Option, + #[arg(long, required_unless_present = "content_file")] + content: Option, + #[arg(long, value_name = "FILE", required_unless_present = "content")] + content_file: Option, + }, + /// List staged meeting proposals + List { + #[arg(long = "meeting")] + meeting_id: Option, + #[arg(long)] + status: Option, + #[arg(long, default_value_t = 20, value_parser = clap::value_parser!(u32).range(1..=200), help = "Maximum results (1-200)")] + limit: u32, + #[arg(long, default_value_t = 0, help = "Number of results to skip")] + offset: u32, + }, + /// Show one proposal and its unified diff + Show { id: String }, + /// Decline a pending proposal without changing the meeting + Decline { id: String }, +} + +#[derive(Clone, Copy, Debug, Eq, PartialEq, ValueEnum)] +pub enum ProposalKind { + Summary, + Memo, +} + +impl ProposalKind { + pub fn as_str(self) -> &'static str { + match self { + Self::Summary => "summary", + Self::Memo => "memo", + } + } +} + #[derive(Debug, Subcommand)] pub enum AuthCommand { /// Sign in through a browser on this or another device @@ -179,6 +246,7 @@ mod tests { assert!(help.contains("meetings")); assert!(help.contains("mcp")); assert!(help.contains("doctor")); + assert!(help.contains("proposals")); let Command::Meetings { command } = Args::parse_from([ "anarlog", diff --git a/apps/cli/src/commands/doctor.rs b/apps/cli/src/commands/doctor.rs index 8f42024b1f1..943d5809963 100644 --- a/apps/cli/src/commands/doctor.rs +++ b/apps/cli/src/commands/doctor.rs @@ -73,6 +73,7 @@ async fn schema_check(db: &anlg_db_core::Db) -> std::result::Result<(), String> anlg_db_app::list_session_transcripts(db.pool(), "__anarlog_doctor__"), anlg_db_app::list_session_participants(db.pool(), "__anarlog_doctor__"), anlg_db_app::list_session_action_items(db.pool(), "__anarlog_doctor__"), + anlg_db_app::list_session_proposals(db.pool(), None, None, 1, 0), ) .map(|_| ()) .map_err(|error| format!("schema check failed: {error}")) diff --git a/apps/cli/src/commands/mod.rs b/apps/cli/src/commands/mod.rs index d5f0b8feea8..51524d34bcc 100644 --- a/apps/cli/src/commands/mod.rs +++ b/apps/cli/src/commands/mod.rs @@ -1,3 +1,4 @@ pub mod auth; pub mod doctor; pub mod meetings; +pub mod proposals; diff --git a/apps/cli/src/commands/proposals.rs b/apps/cli/src/commands/proposals.rs new file mode 100644 index 00000000000..628e0aff55d --- /dev/null +++ b/apps/cli/src/commands/proposals.rs @@ -0,0 +1,137 @@ +use std::path::PathBuf; + +use crate::cli::ProposalCommand; +use crate::{Result, output}; +use anlg_agent_access::{ + CreateProposalInput, DeclineProposalInput, GetProposalInput, ListProposalsInput, Proposal, + create_proposal, decline_proposal, get_proposal, list_proposals, +}; + +pub async fn run(db: &anlg_db_core::Db, command: ProposalCommand, json: bool) -> Result<()> { + match command { + ProposalCommand::Create { + meeting_id, + kind, + target_id, + content, + content_file, + } => { + let proposal = create_proposal( + db.pool(), + CreateProposalInput { + meeting_id, + kind: kind.as_str().to_string(), + target_id, + content: read_content(content, content_file)?, + source: Some("cli".to_string()), + }, + ) + .await?; + emit_proposal("proposals.create", &proposal, json) + } + ProposalCommand::List { + meeting_id, + status, + limit, + offset, + } => { + let page = list_proposals( + db.pool(), + ListProposalsInput { + meeting_id, + status, + limit: Some(limit), + offset: Some(offset), + }, + ) + .await?; + if json { + output::emit(&output::json( + "proposals.list", + &page.proposals, + Some(&page.pagination), + )?); + } else if page.proposals.is_empty() { + output::emit("No proposals found."); + } else { + output::emit(&render_list(&page.proposals)); + } + Ok(()) + } + ProposalCommand::Show { id } => { + let proposal = get_proposal(db.pool(), GetProposalInput { proposal_id: id }).await?; + emit_proposal("proposals.show", &proposal, json) + } + ProposalCommand::Decline { id } => { + let proposal = + decline_proposal(db.pool(), DeclineProposalInput { proposal_id: id }).await?; + emit_proposal("proposals.decline", &proposal, json) + } + } +} + +fn read_content(content: Option, content_file: Option) -> Result { + match (content, content_file) { + (Some(content), None) => Ok(content), + (None, Some(path)) => std::fs::read_to_string(&path) + .map_err(|error| crate::Error::operation("read proposal content", error.to_string())), + (Some(_), Some(_)) => Err(crate::Error::operation( + "read proposal content", + "pass either --content or --content-file, not both", + )), + (None, None) => Err(crate::Error::operation( + "read proposal content", + "pass --content or --content-file", + )), + } +} + +fn emit_proposal(command: &'static str, proposal: &Proposal, json: bool) -> Result<()> { + if json { + output::emit(&output::json(command, proposal, None)?); + } else { + output::emit(&render_proposal(proposal)); + } + Ok(()) +} + +fn render_list(proposals: &[Proposal]) -> String { + let mut lines = + vec!["STATUS KIND MEETING ID".to_string()]; + for proposal in proposals { + lines.push(format!( + "{:<10} {:<16} {:<30} {}", + truncate(&proposal.status, 10), + truncate(&proposal.kind, 16), + truncate(&proposal.meeting_id, 30), + proposal.id + )); + } + lines.join("\n") +} + +fn render_proposal(proposal: &Proposal) -> String { + format!( + "ID: {}\nMeeting: {}\nKind: {}\nTarget: {}\nStatus: {}\nSource: {}\nCreated: {}\n\n{}", + proposal.id, + proposal.meeting_id, + proposal.kind, + proposal.target_id, + proposal.status, + proposal.source, + proposal.created_at, + proposal.diff.trim_end() + ) +} + +fn truncate(value: &str, width: usize) -> String { + if value.chars().count() <= width { + return value.to_string(); + } + let mut text = value + .chars() + .take(width.saturating_sub(1)) + .collect::(); + text.push('…'); + text +} diff --git a/apps/cli/src/db.rs b/apps/cli/src/db.rs index 3a814643d1f..fee9f8b1a2a 100644 --- a/apps/cli/src/db.rs +++ b/apps/cli/src/db.rs @@ -14,6 +14,17 @@ pub async fn open(args: &Args) -> Result { .map_err(|error| Error::operation("open database", error.to_string())) } +pub async fn open_write(args: &Args) -> Result { + let path = resolve_path(args)?; + if !path.is_file() { + return Err(Error::DatabaseNotFound(path)); + } + + anlg_db_core::Db::connect_local_read_write(&path) + .await + .map_err(|error| Error::operation("open database for writes", error.to_string())) +} + pub(crate) fn resolve_path(args: &Args) -> Result { if let Some(path) = &args.db_path { return Ok(path.clone()); diff --git a/apps/cli/src/error.rs b/apps/cli/src/error.rs index 23c1a1d5f9c..115fa276f17 100644 --- a/apps/cli/src/error.rs +++ b/apps/cli/src/error.rs @@ -19,6 +19,12 @@ impl From for Error { fn from(error: anlg_agent_access::Error) -> Self { match error { anlg_agent_access::Error::NotFound(what) => Self::NotFound(what), + anlg_agent_access::Error::Invalid(reason) => { + Self::operation("validate proposal", reason) + } + anlg_agent_access::Error::Conflict(reason) => { + Self::operation("update proposal", reason) + } anlg_agent_access::Error::Database { action, source } => { Self::operation(action, source.to_string()) } diff --git a/apps/cli/src/lib.rs b/apps/cli/src/lib.rs index ca739e38953..43b9ce9aed0 100644 --- a/apps/cli/src/lib.rs +++ b/apps/cli/src/lib.rs @@ -22,13 +22,21 @@ pub async fn run(args: Args) -> Result { return Ok(if ready { 0 } else { 1 }); } - let db = std::sync::Arc::new(db::open(&args).await?); + let json = args.json; + let db = std::sync::Arc::new(if args.needs_write() { + db::open_write(&args).await? + } else { + db::open(&args).await? + }); match args.command { cli::Command::Auth { .. } => unreachable!("auth returns before opening the database"), cli::Command::Doctor => unreachable!("doctor returns before opening the database"), cli::Command::Meetings { command } => { - commands::meetings::run(db.as_ref(), command, args.json).await? + commands::meetings::run(db.as_ref(), command, json).await? + } + cli::Command::Proposals { command } => { + commands::proposals::run(db.as_ref(), command, json).await? } cli::Command::Mcp => mcp::serve(db).await?, } @@ -99,4 +107,68 @@ mod tests { assert!(exported.contains("# Planning")); assert!(exported.contains("Decide the launch date.")); } + + #[tokio::test] + async fn proposal_create_lists_and_declines_without_changing_the_note() { + let dir = tempfile::tempdir().unwrap(); + let db_path = dir.path().join("app.db"); + let db = anlg_db_core::Db::connect_local_plain(&db_path) + .await + .unwrap(); + anlg_db_app::prepare_schema(&db).await.unwrap(); + sqlx::query( + "INSERT INTO sessions (id, title, started_at) VALUES ('meeting-1', 'Planning', '2026-07-13')", + ) + .execute(db.pool()) + .await + .unwrap(); + sqlx::query( + "INSERT INTO session_documents (id, session_id, kind, body_format, body) + VALUES + ('meeting-1', 'meeting-1', 'note', 'markdown', 'Original memo'), + ('summary-1', 'meeting-1', 'summary', 'markdown', 'Original summary')", + ) + .execute(db.pool()) + .await + .unwrap(); + db.pool().close().await; + + run(Args { + base: None, + db_path: Some(db_path.clone()), + json: true, + command: cli::Command::Proposals { + command: cli::ProposalCommand::Create { + meeting_id: "meeting-1".to_string(), + kind: cli::ProposalKind::Summary, + target_id: None, + content: Some("Revised summary".to_string()), + content_file: None, + }, + }, + }) + .await + .unwrap(); + + let read = anlg_db_core::Db::connect_local_read_only(&db_path) + .await + .unwrap(); + let pending: Vec<(String, String)> = + sqlx::query_as("SELECT status, proposed_markdown FROM session_proposals") + .fetch_all(read.pool()) + .await + .unwrap(); + let note: String = + sqlx::query_scalar("SELECT body FROM session_documents WHERE id = 'summary-1'") + .fetch_one(read.pool()) + .await + .unwrap(); + read.pool().close().await; + + assert_eq!( + pending, + vec![("pending".to_string(), "Revised summary".to_string())] + ); + assert_eq!(note, "Original summary"); + } } diff --git a/apps/cli/src/mcp.rs b/apps/cli/src/mcp.rs index f9f2854be2a..ba7c6b9ed6d 100644 --- a/apps/cli/src/mcp.rs +++ b/apps/cli/src/mcp.rs @@ -114,6 +114,134 @@ impl AnarlogMcpServer { .map_err(command_error)?; structured(&page) } + + #[tool( + description = "Propose a complete summary replacement. The proposal stays pending until a human applies it in the Anarlog desktop app. Specify target_id when the meeting has multiple summaries.", + annotations( + read_only_hint = false, + destructive_hint = false, + idempotent_hint = false, + open_world_hint = false + ) + )] + async fn propose_summary_edit( + &self, + Parameters(input): Parameters, + ) -> std::result::Result { + let proposal = access::create_proposal( + self.db.pool(), + access::CreateProposalInput { + meeting_id: input.meeting_id, + kind: "summary_replace".to_string(), + target_id: input.target_id, + content: input.content, + source: Some("mcp".to_string()), + }, + ) + .await + .map_err(command_error)?; + structured(&proposal) + } + + #[tool( + description = "Propose a complete memo replacement. The proposal stays pending until a human applies it in the Anarlog desktop app.", + annotations( + read_only_hint = false, + destructive_hint = false, + idempotent_hint = false, + open_world_hint = false + ) + )] + async fn propose_memo_edit( + &self, + Parameters(input): Parameters, + ) -> std::result::Result { + let proposal = access::create_proposal( + self.db.pool(), + access::CreateProposalInput { + meeting_id: input.meeting_id, + kind: "memo_replace".to_string(), + target_id: None, + content: input.content, + source: Some("mcp".to_string()), + }, + ) + .await + .map_err(command_error)?; + structured(&proposal) + } + + #[tool( + description = "List staged Anarlog meeting proposals. Defaults to pending proposals. Pass status all to include applied and declined rows, and next_offset as offset to continue.", + annotations( + read_only_hint = true, + destructive_hint = false, + idempotent_hint = true, + open_world_hint = false + ) + )] + async fn list_proposals( + &self, + Parameters(input): Parameters, + ) -> std::result::Result { + let page = access::list_proposals(self.db.pool(), input) + .await + .map_err(command_error)?; + structured(&page) + } + + #[tool( + description = "Get one staged Anarlog proposal, including its unified diff. The proposal is not applied.", + annotations( + read_only_hint = true, + destructive_hint = false, + idempotent_hint = true, + open_world_hint = false + ) + )] + async fn get_proposal( + &self, + Parameters(input): Parameters, + ) -> std::result::Result { + let proposal = access::get_proposal(self.db.pool(), input) + .await + .map_err(command_error)?; + structured(&proposal) + } + + #[tool( + description = "Decline a pending proposal without changing the meeting. Applied proposals cannot be declined.", + annotations( + read_only_hint = false, + destructive_hint = false, + idempotent_hint = false, + open_world_hint = false + ) + )] + async fn decline_proposal( + &self, + Parameters(input): Parameters, + ) -> std::result::Result { + let proposal = access::decline_proposal(self.db.pool(), input) + .await + .map_err(command_error)?; + structured(&proposal) + } +} + +#[derive(Debug, serde::Deserialize, schemars::JsonSchema)] +#[serde(rename_all = "snake_case")] +struct ProposeSummaryInput { + meeting_id: String, + content: String, + target_id: Option, +} + +#[derive(Debug, serde::Deserialize, schemars::JsonSchema)] +#[serde(rename_all = "snake_case")] +struct ProposeMemoInput { + meeting_id: String, + content: String, } #[tool_handler] @@ -131,7 +259,7 @@ impl ServerHandler for AnarlogMcpServer { env!("CARGO_PKG_VERSION"), )) .with_instructions( - "Read-only, local access to Anarlog meeting data. Start with list_meetings to resolve a meeting_id, then call get_meeting for notes, summaries, participants, and action items. Request transcript pages with get_meeting_transcript and continue with pagination.next_offset; each page is capped at 500 words. Use get_recurring_meeting_history for series context. Never invent meeting ids, access SQLite directly, or claim a write occurred: every tool is idempotent and performs no writes. Documentation: https://docs.anarlog.so", + "Local access to Anarlog meeting data. Start with list_meetings to resolve a meeting_id, then call get_meeting for notes, summaries, participants, and action items. Request transcript pages with get_meeting_transcript and continue with pagination.next_offset; each page is capped at 500 words. Use get_recurring_meeting_history for series context. To persist an edit, call propose_summary_edit or propose_memo_edit; the result stays pending until a human applies it in the desktop app. List or inspect staged work with list_proposals and get_proposal. decline_proposal discards a pending proposal without changing the meeting. Never invent meeting ids, access SQLite directly, or claim a proposal was applied. Documentation: https://docs.anarlog.so", ) } @@ -406,7 +534,8 @@ mod tests { let instructions = info.instructions.unwrap(); assert!(instructions.contains("Start with list_meetings")); assert!(instructions.contains("https://docs.anarlog.so")); - assert!(instructions.contains("performs no writes")); + assert!(instructions.contains("propose_summary_edit")); + assert!(instructions.contains("claim a proposal was applied")); } #[tokio::test] @@ -475,10 +604,15 @@ mod tests { assert_eq!( tool_names, [ + "decline_proposal", "get_meeting", "get_meeting_transcript", + "get_proposal", "get_recurring_meeting_history", "list_meetings", + "list_proposals", + "propose_memo_edit", + "propose_summary_edit", ] ); let mcp_docs = include_str!("../../../docs/reference/mcp.mdx"); @@ -506,9 +640,13 @@ mod tests { ); } let annotations = tool.annotations.expect("tool annotations"); - assert_eq!(annotations.read_only_hint, Some(true)); + let write_tool = matches!( + tool.name.as_ref(), + "propose_summary_edit" | "propose_memo_edit" | "decline_proposal" + ); + assert_eq!(annotations.read_only_hint, Some(!write_tool)); assert_eq!(annotations.destructive_hint, Some(false)); - assert_eq!(annotations.idempotent_hint, Some(true)); + assert_eq!(annotations.idempotent_hint, Some(!write_tool)); assert_eq!(annotations.open_world_hint, Some(false)); } diff --git a/apps/cli/src/snapshots/anarlog_cli__cli__tests__cli_contract.snap b/apps/cli/src/snapshots/anarlog_cli__cli__tests__cli_contract.snap index 61efdcf89f3..3a86d6e574c 100644 --- a/apps/cli/src/snapshots/anarlog_cli__cli__tests__cli_contract.snap +++ b/apps/cli/src/snapshots/anarlog_cli__cli__tests__cli_contract.snap @@ -1,5 +1,6 @@ --- source: apps/cli/src/cli.rs +assertion_line: 367 expression: canonicalize_json(contract) --- { @@ -325,7 +326,148 @@ expression: canonicalize_json(contract) "synopsis": "anarlog meetings [-h] " }, { - "about": "Run the read-only Anarlog MCP server over stdio", + "about": "Propose meeting edits for desktop review", + "name": "anarlog proposals", + "options": [ + { + "flags": "-h, --help", + "help": "Print help", + "is_flag": false, + "required": false + } + ], + "subcommands": [ + { + "about": "Stage a summary or memo replacement for desktop review", + "name": "anarlog proposals create", + "options": [ + { + "flags": "--meeting", + "is_flag": false, + "required": true, + "value_name": "MEETING_ID" + }, + { + "flags": "--kind", + "is_flag": false, + "possible_values": [ + "summary", + "memo" + ], + "required": true, + "value_name": "KIND" + }, + { + "flags": "--target", + "is_flag": false, + "required": false, + "value_name": "TARGET_ID" + }, + { + "flags": "--content", + "is_flag": false, + "required": false, + "value_name": "CONTENT" + }, + { + "flags": "--content-file", + "is_flag": false, + "required": false, + "value_name": "FILE" + }, + { + "flags": "-h, --help", + "help": "Print help", + "is_flag": false, + "required": false + } + ], + "synopsis": "anarlog proposals create <--meeting> <--kind> [--target] [--content] [--content-file] [-h]" + }, + { + "about": "List staged meeting proposals", + "name": "anarlog proposals list", + "options": [ + { + "flags": "--meeting", + "is_flag": false, + "required": false, + "value_name": "MEETING_ID" + }, + { + "flags": "--status", + "is_flag": false, + "required": false, + "value_name": "STATUS" + }, + { + "default": "20", + "flags": "--limit", + "help": "Maximum results (1-200)", + "is_flag": false, + "required": false, + "value_name": "LIMIT" + }, + { + "default": "0", + "flags": "--offset", + "help": "Number of results to skip", + "is_flag": false, + "required": false, + "value_name": "OFFSET" + }, + { + "flags": "-h, --help", + "help": "Print help", + "is_flag": false, + "required": false + } + ], + "synopsis": "anarlog proposals list [--meeting] [--status] [--limit] [--offset] [-h]" + }, + { + "about": "Show one proposal and its unified diff", + "arguments": [ + { + "name": "ID", + "required": true + } + ], + "name": "anarlog proposals show", + "options": [ + { + "flags": "-h, --help", + "help": "Print help", + "is_flag": false, + "required": false + } + ], + "synopsis": "anarlog proposals show [-h] " + }, + { + "about": "Decline a pending proposal without changing the meeting", + "arguments": [ + { + "name": "ID", + "required": true + } + ], + "name": "anarlog proposals decline", + "options": [ + { + "flags": "-h, --help", + "help": "Print help", + "is_flag": false, + "required": false + } + ], + "synopsis": "anarlog proposals decline [-h] " + } + ], + "synopsis": "anarlog proposals [-h] " + }, + { + "about": "Run the Anarlog MCP server over stdio", "name": "anarlog mcp", "options": [ { diff --git a/apps/cli/src/snapshots/anarlog_cli__mcp__tests__mcp_contract.snap b/apps/cli/src/snapshots/anarlog_cli__mcp__tests__mcp_contract.snap index dda8950fea9..cae187b973c 100644 --- a/apps/cli/src/snapshots/anarlog_cli__mcp__tests__mcp_contract.snap +++ b/apps/cli/src/snapshots/anarlog_cli__mcp__tests__mcp_contract.snap @@ -1,9 +1,10 @@ --- source: apps/cli/src/mcp.rs -expression: "serde_json::json!({\n \"protocol_version\": info.protocol_version, \"instructions\":\n info.instructions, \"tools\": tools, \"resource_templates\": templates,\n})" +assertion_line: 589 +expression: "canonicalize_json(serde_json::json!({\n \"protocol_version\": info.protocol_version, \"instructions\":\n info.instructions, \"tools\": tools, \"resource_templates\": templates,\n}))" --- { - "instructions": "Read-only, local access to Anarlog meeting data. Start with list_meetings to resolve a meeting_id, then call get_meeting for notes, summaries, participants, and action items. Request transcript pages with get_meeting_transcript and continue with pagination.next_offset; each page is capped at 500 words. Use get_recurring_meeting_history for series context. Never invent meeting ids, access SQLite directly, or claim a write occurred: every tool is idempotent and performs no writes. Documentation: https://docs.anarlog.so", + "instructions": "Local access to Anarlog meeting data. Start with list_meetings to resolve a meeting_id, then call get_meeting for notes, summaries, participants, and action items. Request transcript pages with get_meeting_transcript and continue with pagination.next_offset; each page is capped at 500 words. Use get_recurring_meeting_history for series context. To persist an edit, call propose_summary_edit or propose_memo_edit; the result stays pending until a human applies it in the desktop app. List or inspect staged work with list_proposals and get_proposal. decline_proposal discards a pending proposal without changing the meeting. Never invent meeting ids, access SQLite directly, or claim a proposal was applied. Documentation: https://docs.anarlog.so", "protocol_version": "2024-11-05", "resource_templates": [ { @@ -26,6 +27,30 @@ expression: "serde_json::json!({\n \"protocol_version\": info.protocol_versio } ], "tools": [ + { + "annotations": { + "destructiveHint": false, + "idempotentHint": false, + "openWorldHint": false, + "readOnlyHint": false + }, + "description": "Decline a pending proposal without changing the meeting. Applied proposals cannot be declined.", + "inputSchema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "proposal_id": { + "description": "Proposal id", + "type": "string" + } + }, + "required": [ + "proposal_id" + ], + "title": "DeclineProposalInput", + "type": "object" + }, + "name": "decline_proposal" + }, { "annotations": { "destructiveHint": false, @@ -93,6 +118,30 @@ expression: "serde_json::json!({\n \"protocol_version\": info.protocol_versio }, "name": "get_meeting_transcript" }, + { + "annotations": { + "destructiveHint": false, + "idempotentHint": true, + "openWorldHint": false, + "readOnlyHint": true + }, + "description": "Get one staged Anarlog proposal, including its unified diff. The proposal is not applied.", + "inputSchema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "proposal_id": { + "description": "Proposal id", + "type": "string" + } + }, + "required": [ + "proposal_id" + ], + "title": "GetProposalInput", + "type": "object" + }, + "name": "get_proposal" + }, { "annotations": { "destructiveHint": false, @@ -185,6 +234,116 @@ expression: "serde_json::json!({\n \"protocol_version\": info.protocol_versio "type": "object" }, "name": "list_meetings" + }, + { + "annotations": { + "destructiveHint": false, + "idempotentHint": true, + "openWorldHint": false, + "readOnlyHint": true + }, + "description": "List staged Anarlog meeting proposals. Defaults to pending proposals. Pass status all to include applied and declined rows, and next_offset as offset to continue.", + "inputSchema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "limit": { + "description": "Maximum results; defaults to 20 and is capped at 200", + "format": "uint32", + "maximum": 200, + "minimum": 1, + "type": [ + "integer", + "null" + ] + }, + "meeting_id": { + "description": "Limit results to one meeting", + "type": [ + "string", + "null" + ] + }, + "offset": { + "description": "Number of results to skip; defaults to 0", + "format": "uint32", + "minimum": 0, + "type": [ + "integer", + "null" + ] + }, + "status": { + "description": "pending, applied, or declined. Defaults to pending.", + "type": [ + "string", + "null" + ] + } + }, + "title": "ListProposalsInput", + "type": "object" + }, + "name": "list_proposals" + }, + { + "annotations": { + "destructiveHint": false, + "idempotentHint": false, + "openWorldHint": false, + "readOnlyHint": false + }, + "description": "Propose a complete memo replacement. The proposal stays pending until a human applies it in the Anarlog desktop app.", + "inputSchema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "content": { + "type": "string" + }, + "meeting_id": { + "type": "string" + } + }, + "required": [ + "meeting_id", + "content" + ], + "title": "ProposeMemoInput", + "type": "object" + }, + "name": "propose_memo_edit" + }, + { + "annotations": { + "destructiveHint": false, + "idempotentHint": false, + "openWorldHint": false, + "readOnlyHint": false + }, + "description": "Propose a complete summary replacement. The proposal stays pending until a human applies it in the Anarlog desktop app. Specify target_id when the meeting has multiple summaries.", + "inputSchema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "content": { + "type": "string" + }, + "meeting_id": { + "type": "string" + }, + "target_id": { + "type": [ + "string", + "null" + ] + } + }, + "required": [ + "meeting_id", + "content" + ], + "title": "ProposeSummaryInput", + "type": "object" + }, + "name": "propose_summary_edit" } ] } diff --git a/apps/desktop/src/chat/components/message/tool/edit-summary.test.tsx b/apps/desktop/src/chat/components/message/tool/edit-summary.test.tsx index 78a7b5165a5..258d51ef7a9 100644 --- a/apps/desktop/src/chat/components/message/tool/edit-summary.test.tsx +++ b/apps/desktop/src/chat/components/message/tool/edit-summary.test.tsx @@ -5,6 +5,10 @@ const tabState = vi.hoisted(() => ({ close: vi.fn(), tabs: [] as Array>, })); +const reviewMocks = vi.hoisted(() => ({ + applyProposalReview: vi.fn(() => Promise.resolve()), + declineProposalReview: vi.fn(() => Promise.resolve()), +})); vi.mock("streamdown", () => ({ Streamdown: ({ children }: { children: React.ReactNode }) => ( @@ -18,6 +22,11 @@ vi.mock("~/store/zustand/tabs", () => ({ }, })); +vi.mock("~/session/proposal-review", () => ({ + applyProposalReview: reviewMocks.applyProposalReview, + declineProposalReview: reviewMocks.declineProposalReview, +})); + import { ToolEditMemo, ToolEditSummary } from "./edit-summary"; import { usePendingEditStore } from "~/chat/tools/pending-edit-store"; @@ -52,26 +61,40 @@ describe("ToolEditSummary", () => { ]; }); - it.each([ - ["Decline", false], - ["Apply to summary", true], - ])("resolves %s from the chat card", (label, approved) => { - const resolve = vi.fn(); + it("applies a reviewed summary edit from the chat card", () => { + usePendingEditStore.getState().addEdit({ + requestId: "tool-call-1", + sessionId: "session-1", + target: { kind: "summary", enhancedNoteId: "summary-1" }, + currentContent: "Current summary", + proposedContent: "Updated summary", + source: "chat", + resolve: vi.fn(), + }); + + render(); + fireEvent.click(screen.getByRole("button", { name: "Apply to summary" })); + + expect(reviewMocks.applyProposalReview).toHaveBeenCalledWith("tool-call-1"); + }); + + it("declines a reviewed summary edit from the chat card", () => { usePendingEditStore.getState().addEdit({ requestId: "tool-call-1", sessionId: "session-1", target: { kind: "summary", enhancedNoteId: "summary-1" }, currentContent: "Current summary", proposedContent: "Updated summary", - resolve, + source: "chat", + resolve: vi.fn(), }); render(); - fireEvent.click(screen.getByRole("button", { name: label })); + fireEvent.click(screen.getByRole("button", { name: "Decline" })); - expect(resolve).toHaveBeenCalledWith(approved); - expect(tabState.close).toHaveBeenCalledWith(tabState.tabs[0]); - expect(usePendingEditStore.getState().edits.has("tool-call-1")).toBe(false); + expect(reviewMocks.declineProposalReview).toHaveBeenCalledWith( + "tool-call-1", + ); }); it("hides review actions when the edit is no longer pending", () => { @@ -84,20 +107,19 @@ describe("ToolEditSummary", () => { }); it("applies a reviewed memo edit from the chat card", () => { - const resolve = vi.fn(); usePendingEditStore.getState().addEdit({ requestId: "tool-call-1", sessionId: "session-1", target: { kind: "memo" }, currentContent: "", proposedContent: "## Agenda", - resolve, + source: "chat", + resolve: vi.fn(), }); render(); fireEvent.click(screen.getByRole("button", { name: "Apply to memo" })); - expect(resolve).toHaveBeenCalledWith(true); - expect(tabState.close).toHaveBeenCalledWith(tabState.tabs[0]); + expect(reviewMocks.applyProposalReview).toHaveBeenCalledWith("tool-call-1"); }); }); diff --git a/apps/desktop/src/chat/components/message/tool/edit-summary.tsx b/apps/desktop/src/chat/components/message/tool/edit-summary.tsx index daf7a790e89..f2d2bca3208 100644 --- a/apps/desktop/src/chat/components/message/tool/edit-summary.tsx +++ b/apps/desktop/src/chat/components/message/tool/edit-summary.tsx @@ -12,7 +12,10 @@ import { import { parseMcpObjectOutput } from "~/chat/mcp/mcp-output-parser"; import { usePendingEditStore } from "~/chat/tools/pending-edit-store"; -import { useTabs } from "~/store/zustand/tabs"; +import { + applyProposalReview, + declineProposalReview, +} from "~/session/proposal-review"; type EditSummaryOutput = { status?: string; @@ -39,35 +42,26 @@ function EditActions({ const editPending = usePendingEditStore((state) => state.edits.has(toolCallId), ); - const resolveEdit = usePendingEditStore((state) => state.resolveEdit); if (!editPending) { return null; } - const resolve = (approved: boolean) => { - resolveEdit(toolCallId, approved); - - const tabs = useTabs.getState(); - const reviewTab = tabs.tabs.find( - (tab) => tab.type === "edit" && tab.requestId === toolCallId, - ); - if (reviewTab) { - tabs.close(reviewTab); - } - }; - return (
-
diff --git a/apps/desktop/src/chat/tools/edit-memo.test.ts b/apps/desktop/src/chat/tools/edit-memo.test.ts index 0fbf792a0f4..cf9ecce47cb 100644 --- a/apps/desktop/src/chat/tools/edit-memo.test.ts +++ b/apps/desktop/src/chat/tools/edit-memo.test.ts @@ -2,7 +2,9 @@ import { beforeEach, describe, expect, it, vi } from "vitest"; const mocks = vi.hoisted(() => ({ loadSessionContentSnapshot: vi.fn(), - updateSession: vi.fn(), + persistChatSessionProposal: vi.fn(), + applySessionProposal: vi.fn(), + declineSessionProposal: vi.fn(), })); vi.mock("~/session/content-queries", () => ({ @@ -10,7 +12,9 @@ vi.mock("~/session/content-queries", () => ({ })); vi.mock("~/session/queries", () => ({ - updateSession: mocks.updateSession, + persistChatSessionProposal: mocks.persistChatSessionProposal, + applySessionProposal: mocks.applySessionProposal, + declineSessionProposal: mocks.declineSessionProposal, })); import { buildEditMemoTool } from "./edit-memo"; @@ -21,14 +25,20 @@ describe("edit memo chat tool", () => { beforeEach(() => { vi.clearAllMocks(); usePendingEditStore.setState({ edits: new Map() }); - mocks.updateSession.mockResolvedValue(undefined); + mocks.persistChatSessionProposal.mockResolvedValue(undefined); + mocks.applySessionProposal.mockResolvedValue(undefined); + mocks.declineSessionProposal.mockResolvedValue(undefined); mocks.loadSessionContentSnapshot.mockResolvedValue({ rawMarkdown: "Existing notes", + rawNoteId: "session-1", }); }); - it("creates meeting preparation in an empty memo after review", async () => { - mocks.loadSessionContentSnapshot.mockResolvedValue({ rawMarkdown: "" }); + it("persists meeting preparation and applies it after review", async () => { + mocks.loadSessionContentSnapshot.mockResolvedValue({ + rawMarkdown: "", + rawNoteId: "session-1", + }); const openEditTab = vi.fn((requestId: string) => { expect(usePendingEditStore.getState().edits.get(requestId)).toMatchObject( { @@ -36,6 +46,7 @@ describe("edit memo chat tool", () => { target: { kind: "memo" }, currentContent: "", proposedContent: "## Agenda\n\n- Review blockers", + source: "chat", }, ); usePendingEditStore.getState().resolveEdit(requestId, true); @@ -52,10 +63,16 @@ describe("edit memo chat tool", () => { ), ).resolves.toEqual({ status: "applied" }); - expect(openEditTab).toHaveBeenCalledWith("request-1"); - expect(mocks.updateSession).toHaveBeenCalledWith("session-1", { - raw_md: expect.stringContaining("Review blockers"), + expect(mocks.persistChatSessionProposal).toHaveBeenCalledWith({ + id: "request-1", + sessionId: "session-1", + kind: "memo_replace", + targetId: "session-1", + currentMarkdown: "", + proposedMarkdown: "## Agenda\n\n- Review blockers", }); + expect(openEditTab).toHaveBeenCalledWith("request-1"); + expect(mocks.applySessionProposal).toHaveBeenCalledWith("request-1"); }); it("does not overwrite the memo when the review is declined", async () => { @@ -73,6 +90,8 @@ describe("edit memo chat tool", () => { ), ).resolves.toEqual({ status: "declined" }); - expect(mocks.updateSession).not.toHaveBeenCalled(); + expect(mocks.persistChatSessionProposal).toHaveBeenCalled(); + expect(mocks.declineSessionProposal).toHaveBeenCalledWith("request-1"); + expect(mocks.applySessionProposal).not.toHaveBeenCalled(); }); }); diff --git a/apps/desktop/src/chat/tools/edit-memo.ts b/apps/desktop/src/chat/tools/edit-memo.ts index 5fd2dd8c910..fdd05766664 100644 --- a/apps/desktop/src/chat/tools/edit-memo.ts +++ b/apps/desktop/src/chat/tools/edit-memo.ts @@ -1,13 +1,15 @@ import { tool } from "ai"; import { z } from "zod"; -import { md2json } from "@anlg/editor/markdown"; - import type { ToolDependencies } from "./types"; import { usePendingEditStore } from "~/chat/tools/pending-edit-store"; import { loadSessionContentSnapshot } from "~/session/content-queries"; -import { updateSession } from "~/session/queries"; +import { + applySessionProposal, + declineSessionProposal, + persistChatSessionProposal, +} from "~/session/queries"; export const buildEditMemoTool = ( deps: Pick, @@ -43,6 +45,22 @@ export const buildEditMemoTool = ( return { status: "error", message: "Session not found." }; } + try { + await persistChatSessionProposal({ + id: toolCallId, + sessionId, + kind: "memo_replace", + targetId: snapshot.rawNoteId || sessionId, + currentMarkdown: snapshot.rawMarkdown, + proposedMarkdown: params.content, + }); + } catch { + return { + status: "error", + message: "Failed to save the proposed memo edit.", + }; + } + const approved = await new Promise((resolve) => { usePendingEditStore.getState().addEdit({ requestId: toolCallId, @@ -50,19 +68,19 @@ export const buildEditMemoTool = ( target: { kind: "memo" }, currentContent: snapshot.rawMarkdown, proposedContent: params.content, + source: "chat", resolve, }); deps.openEditTab(toolCallId); }); if (!approved) { + await declineSessionProposal(toolCallId); return { status: "declined" }; } try { - await updateSession(sessionId, { - raw_md: JSON.stringify(md2json(params.content)), - }); + await applySessionProposal(toolCallId); } catch { return { status: "error", diff --git a/apps/desktop/src/chat/tools/edit-summary.test.ts b/apps/desktop/src/chat/tools/edit-summary.test.ts index c627671b2a2..b5959a4abfb 100644 --- a/apps/desktop/src/chat/tools/edit-summary.test.ts +++ b/apps/desktop/src/chat/tools/edit-summary.test.ts @@ -2,7 +2,9 @@ import { beforeEach, describe, expect, it, vi } from "vitest"; const mocks = vi.hoisted(() => ({ loadSessionContentSnapshot: vi.fn(), - updateEnhancedNoteContent: vi.fn(), + persistChatSessionProposal: vi.fn(), + applySessionProposal: vi.fn(), + declineSessionProposal: vi.fn(), })); vi.mock("~/session/content-queries", () => ({ @@ -10,7 +12,9 @@ vi.mock("~/session/content-queries", () => ({ })); vi.mock("~/session/queries", () => ({ - updateEnhancedNoteContent: mocks.updateEnhancedNoteContent, + persistChatSessionProposal: mocks.persistChatSessionProposal, + applySessionProposal: mocks.applySessionProposal, + declineSessionProposal: mocks.declineSessionProposal, })); import { buildEditSummaryTool } from "./edit-summary"; @@ -21,7 +25,9 @@ describe("edit summary chat tool", () => { beforeEach(() => { vi.clearAllMocks(); usePendingEditStore.setState({ edits: new Map() }); - mocks.updateEnhancedNoteContent.mockResolvedValue(undefined); + mocks.persistChatSessionProposal.mockResolvedValue(undefined); + mocks.applySessionProposal.mockResolvedValue(undefined); + mocks.declineSessionProposal.mockResolvedValue(undefined); mocks.loadSessionContentSnapshot.mockResolvedValue({ enhancedNotes: [ { @@ -35,7 +41,7 @@ describe("edit summary chat tool", () => { }); }); - it("awaits the reviewed SQLite summary write", async () => { + it("persists a proposal and applies it after review", async () => { const openEditTab = vi.fn((requestId: string) => { const pending = usePendingEditStore.getState().edits.get(requestId); expect(pending).toMatchObject({ @@ -43,6 +49,7 @@ describe("edit summary chat tool", () => { target: { kind: "summary", enhancedNoteId: "summary-1" }, currentContent: "Current summary", proposedContent: "Updated summary", + source: "chat", }); usePendingEditStore.getState().resolveEdit(requestId, true); }); @@ -59,12 +66,36 @@ describe("edit summary chat tool", () => { ), ).resolves.toEqual({ status: "applied" }); + expect(mocks.persistChatSessionProposal).toHaveBeenCalledWith({ + id: "request-1", + sessionId: "session-1", + kind: "summary_replace", + targetId: "summary-1", + currentMarkdown: "Current summary", + proposedMarkdown: "Updated summary", + }); expect(openEditTab).toHaveBeenCalledWith("request-1"); - expect(mocks.updateEnhancedNoteContent).toHaveBeenCalledWith( - "summary-1", - "session-1", - expect.stringContaining("Updated summary"), - ); + expect(mocks.applySessionProposal).toHaveBeenCalledWith("request-1"); + }); + + it("declines the persisted proposal when review is rejected", async () => { + const editTool = buildEditSummaryTool({ + getSessionId: () => "session-1", + getEnhancedNoteId: () => undefined, + openEditTab: (requestId) => { + usePendingEditStore.getState().resolveEdit(requestId, false); + }, + }); + + await expect( + (editTool as any).execute( + { content: "Updated summary" }, + { toolCallId: "request-1", messages: [] }, + ), + ).resolves.toEqual({ status: "declined" }); + + expect(mocks.declineSessionProposal).toHaveBeenCalledWith("request-1"); + expect(mocks.applySessionProposal).not.toHaveBeenCalled(); }); it("returns canonical candidates when the requested summary is unrelated", async () => { @@ -93,6 +124,6 @@ describe("edit summary chat tool", () => { }, ], }); - expect(mocks.updateEnhancedNoteContent).not.toHaveBeenCalled(); + expect(mocks.persistChatSessionProposal).not.toHaveBeenCalled(); }); }); diff --git a/apps/desktop/src/chat/tools/edit-summary.ts b/apps/desktop/src/chat/tools/edit-summary.ts index c9a84de47b9..a1821de77ca 100644 --- a/apps/desktop/src/chat/tools/edit-summary.ts +++ b/apps/desktop/src/chat/tools/edit-summary.ts @@ -1,13 +1,15 @@ import { tool } from "ai"; import { z } from "zod"; -import { md2json } from "@anlg/editor/markdown"; - import type { ToolDependencies } from "./types"; import { usePendingEditStore } from "~/chat/tools/pending-edit-store"; import { loadSessionContentSnapshot } from "~/session/content-queries"; -import { updateEnhancedNoteContent } from "~/session/queries"; +import { + applySessionProposal, + declineSessionProposal, + persistChatSessionProposal, +} from "~/session/queries"; type SummaryCandidate = { enhancedNoteId: string; @@ -122,6 +124,22 @@ export const buildEditSummaryTool = ( const currentContent = notes.find((note) => note.id === enhancedNoteId)?.markdown ?? ""; + try { + await persistChatSessionProposal({ + id: toolCallId, + sessionId, + kind: "summary_replace", + targetId: enhancedNoteId, + currentMarkdown: currentContent, + proposedMarkdown: params.content, + }); + } catch { + return { + status: "error", + message: "Failed to save the proposed summary edit.", + }; + } + const approved = await new Promise((resolve) => { usePendingEditStore.getState().addEdit({ requestId: toolCallId, @@ -129,22 +147,19 @@ export const buildEditSummaryTool = ( target: { kind: "summary", enhancedNoteId }, currentContent, proposedContent: params.content, + source: "chat", resolve, }); deps.openEditTab(toolCallId); }); if (!approved) { + await declineSessionProposal(toolCallId); return { status: "declined" }; } try { - const json = md2json(params.content); - await updateEnhancedNoteContent( - enhancedNoteId, - sessionId, - JSON.stringify(json), - ); + await applySessionProposal(toolCallId); } catch { return { status: "error", diff --git a/apps/desktop/src/chat/tools/meetings.test.ts b/apps/desktop/src/chat/tools/meetings.test.ts index 0b17429cc63..4f52be82528 100644 --- a/apps/desktop/src/chat/tools/meetings.test.ts +++ b/apps/desktop/src/chat/tools/meetings.test.ts @@ -105,12 +105,16 @@ describe("canonical meeting chat tools", () => { get_recurring_meeting_history: buildGetRecurringMeetingHistoryTool(), }; + const canonicalReadTools = contract.tools.filter((tool) => + Object.prototype.hasOwnProperty.call(chatTools, tool.name), + ); + expect(Object.keys(chatTools).sort()).toEqual( - contract.tools.map((tool) => tool.name).sort(), + canonicalReadTools.map((tool) => tool.name).sort(), ); for (const [name, chatTool] of Object.entries(chatTools)) { - const canonical = contract.tools.find((tool) => tool.name === name); + const canonical = canonicalReadTools.find((tool) => tool.name === name); expect(canonical).toBeDefined(); expect(chatTool.description).toBe(canonical?.description); const chatSchema = await asSchema( diff --git a/apps/desktop/src/chat/tools/pending-edit-store.ts b/apps/desktop/src/chat/tools/pending-edit-store.ts index d93e8619e2e..4a572fd3e07 100644 --- a/apps/desktop/src/chat/tools/pending-edit-store.ts +++ b/apps/desktop/src/chat/tools/pending-edit-store.ts @@ -6,6 +6,7 @@ type PendingEdit = { target: { kind: "memo" } | { kind: "summary"; enhancedNoteId: string }; currentContent: string; proposedContent: string; + source?: string; resolve: (approved: boolean) => void; }; diff --git a/apps/desktop/src/edit/tab-content.test.tsx b/apps/desktop/src/edit/tab-content.test.tsx new file mode 100644 index 00000000000..ec2c6b75b33 --- /dev/null +++ b/apps/desktop/src/edit/tab-content.test.tsx @@ -0,0 +1,135 @@ +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import { + cleanup, + fireEvent, + render, + screen, + waitFor, +} from "@testing-library/react"; +import { beforeEach, describe, expect, it, vi } from "vitest"; + +const mocks = vi.hoisted(() => ({ + loadSessionProposal: vi.fn(), + applySessionProposal: vi.fn(), + declineSessionProposal: vi.fn(), + close: vi.fn(), + tabs: [] as Array>, + useSessionSummary: vi.fn(), + useEnhancedNote: vi.fn(), +})); + +vi.mock("@pierre/diffs/react", () => ({ + MultiFileDiff: () =>
, +})); + +vi.mock("~/shared/main", () => ({ + StandardContentWrapper: ({ children }: { children: React.ReactNode }) => ( +
{children}
+ ), +})); + +vi.mock("~/session/queries", () => ({ + loadSessionProposal: mocks.loadSessionProposal, + applySessionProposal: mocks.applySessionProposal, + declineSessionProposal: mocks.declineSessionProposal, + useSessionSummary: mocks.useSessionSummary, + useEnhancedNote: mocks.useEnhancedNote, +})); + +vi.mock("~/store/zustand/tabs", () => ({ + useTabs: { + getState: () => ({ + tabs: mocks.tabs, + close: mocks.close, + }), + }, +})); + +import { TabContentEdit } from "./tab-content"; + +import { usePendingEditStore } from "~/chat/tools/pending-edit-store"; + +const tab = { + type: "edit" as const, + requestId: "proposal-1", + active: true, + pinned: false, + slotId: "slot-1", +}; + +function renderTab() { + const queryClient = new QueryClient({ + defaultOptions: { queries: { retry: false } }, + }); + return render( + + + , + ); +} + +describe("TabContentEdit", () => { + beforeEach(() => { + cleanup(); + vi.clearAllMocks(); + usePendingEditStore.setState({ edits: new Map() }); + mocks.tabs = [tab]; + mocks.applySessionProposal.mockResolvedValue(undefined); + mocks.declineSessionProposal.mockResolvedValue(undefined); + mocks.useSessionSummary.mockReturnValue({ title: "Planning" }); + mocks.useEnhancedNote.mockReturnValue({ title: "Summary" }); + mocks.loadSessionProposal.mockResolvedValue({ + id: "proposal-1", + sessionId: "session-1", + kind: "summary_replace", + targetId: "summary-1", + currentMarkdown: "Current", + proposedMarkdown: "Proposed", + status: "pending", + source: "cli", + }); + }); + + it("loads a CLI proposal from the database and applies it", async () => { + renderTab(); + + expect(await screen.findByText("Planning")).toBeTruthy(); + fireEvent.click(screen.getByRole("button", { name: "Apply to summary" })); + + await waitFor(() => { + expect(mocks.applySessionProposal).toHaveBeenCalledWith("proposal-1"); + }); + expect(mocks.close).toHaveBeenCalledWith(tab); + }); + + it("declines a database-backed proposal without auto-writing", async () => { + renderTab(); + + fireEvent.click(await screen.findByRole("button", { name: "Decline" })); + + await waitFor(() => { + expect(mocks.declineSessionProposal).toHaveBeenCalledWith("proposal-1"); + }); + expect(mocks.applySessionProposal).not.toHaveBeenCalled(); + }); + + it("shows a stale apply error without closing the review", async () => { + mocks.applySessionProposal.mockRejectedValueOnce( + new Error( + "This proposal is stale. The meeting changed after it was created.", + ), + ); + renderTab(); + + fireEvent.click( + await screen.findByRole("button", { name: "Apply to summary" }), + ); + + expect( + await screen.findByText( + "This proposal is stale. The meeting changed after it was created.", + ), + ).toBeTruthy(); + expect(mocks.close).not.toHaveBeenCalled(); + }); +}); diff --git a/apps/desktop/src/edit/tab-content.tsx b/apps/desktop/src/edit/tab-content.tsx index edbfcefddb3..78fd459681f 100644 --- a/apps/desktop/src/edit/tab-content.tsx +++ b/apps/desktop/src/edit/tab-content.tsx @@ -1,17 +1,64 @@ +import { Trans } from "@lingui/react/macro"; import { MultiFileDiff } from "@pierre/diffs/react"; -import { useCallback, useMemo } from "react"; +import { useQuery, useQueryClient } from "@tanstack/react-query"; +import { useCallback, useMemo, useState } from "react"; + +import { Button } from "@anlg/ui/components/ui/button"; import { useStrictModeUnmount } from "./hooks"; import { usePendingEditStore } from "~/chat/tools/pending-edit-store"; -import { useEnhancedNote, useSessionSummary } from "~/session/queries"; +import { + applyProposalReview, + declineProposalReview, + shouldAutoDeclineProposal, +} from "~/session/proposal-review"; +import { + loadSessionProposal, + useEnhancedNote, + useSessionSummary, +} from "~/session/queries"; import { StandardContentWrapper } from "~/shared/main"; import type { Tab } from "~/store/zustand/tabs"; type EditTab = Extract; export function TabContentEdit({ tab }: { tab: EditTab }) { - const edit = usePendingEditStore((s) => s.edits.get(tab.requestId)); + const storeEdit = usePendingEditStore((state) => + state.edits.get(tab.requestId), + ); + const { data: proposal, isLoading } = useQuery({ + queryKey: ["session-proposal", tab.requestId], + queryFn: () => loadSessionProposal(tab.requestId), + enabled: !storeEdit, + }); + const queryClient = useQueryClient(); + const [error, setError] = useState(null); + const [busy, setBusy] = useState(false); + + const edit = storeEdit + ? { + sessionId: storeEdit.sessionId, + target: storeEdit.target, + currentContent: storeEdit.currentContent, + proposedContent: storeEdit.proposedContent, + source: storeEdit.source ?? "chat", + } + : proposal && proposal.status === "pending" + ? { + sessionId: proposal.sessionId, + target: + proposal.kind === "memo_replace" + ? ({ kind: "memo" } as const) + : { + kind: "summary" as const, + enhancedNoteId: proposal.targetId, + }, + currentContent: proposal.currentMarkdown, + proposedContent: proposal.proposedMarkdown, + source: proposal.source, + } + : null; const session = useSessionSummary(edit?.sessionId ?? ""); const summary = useEnhancedNote( @@ -23,10 +70,10 @@ export function TabContentEdit({ tab }: { tab: EditTab }) { const declineOnUnmount = useCallback(() => { const still = usePendingEditStore.getState().edits.get(tab.requestId); - if (still) { - usePendingEditStore.getState().resolveEdit(tab.requestId, false); + if (still && shouldAutoDeclineProposal(still.source)) { + void declineProposalReview(tab.requestId, queryClient); } - }, [tab.requestId]); + }, [queryClient, tab.requestId]); useStrictModeUnmount(declineOnUnmount); const oldFile = useMemo( @@ -50,11 +97,40 @@ export function TabContentEdit({ tab }: { tab: EditTab }) { [edit, isMemo], ); + const review = async (approved: boolean) => { + setBusy(true); + setError(null); + try { + if (approved) { + await applyProposalReview(tab.requestId, queryClient); + } else { + await declineProposalReview(tab.requestId, queryClient); + } + } catch (cause) { + setError( + cause instanceof Error + ? cause.message + : "Failed to update this proposal.", + ); + setBusy(false); + } + }; + + if (!edit && !storeEdit && isLoading) { + return ( + +
+ Loading edit… +
+
+ ); + } + if (!edit) { return (
- This edit is no longer pending. + This edit is no longer pending.
); @@ -63,16 +139,48 @@ export function TabContentEdit({ tab }: { tab: EditTab }) { return (
-
+
- {sessionTitle ?? "Untitled session"} + {sessionTitle ?? Untitled session}
- {isMemo ? "Memo" : (summaryTitle ?? "Summary")} + {isMemo ? ( + Memo + ) : ( + (summaryTitle ?? Summary) + )}
+
+ + +
+ {error ? ( +
+ {error} +
+ ) : null}
\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bykomende gesproke tale\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Begin Anarlog by aanmelding\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kennisgewings\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop wanneer vergadering eindig\"],\"jzmguI\":[\"Vergaderings\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen passende tale gevind nie\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Kies taal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hooftaal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Voeg taal by\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Begin wanneer vergadering begin\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Voeg gesproke taal by\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Soek taal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Taal en streek\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deel gebruiksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Toepassing\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bykomende gesproke tale\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Begin Anarlog by aanmelding\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kennisgewings\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop wanneer vergadering eindig\"],\"jzmguI\":[\"Vergaderings\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen passende tale gevind nie\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Kies taal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/am/messages.po b/apps/desktop/src/i18n/locales/am/messages.po index ba743b34967..d55ee4cd74f 100644 --- a/apps/desktop/src/i18n/locales/am/messages.po +++ b/apps/desktop/src/i18n/locales/am/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/am/messages.ts b/apps/desktop/src/i18n/locales/am/messages.ts index 8be0543abcc..80e4e9b6b43 100644 --- a/apps/desktop/src/i18n/locales/am/messages.ts +++ b/apps/desktop/src/i18n/locales/am/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ቋንቋ አክል\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ስብሰባ ሲጀምር ጀምር\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"የሚነገር ቋንቋ ያክሉ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ቋንቋ ፈልግ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ቋንቋ እና ክልል\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"የአጠቃቀም ውሂብ አጋራ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"መተግበሪያ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ተጨማሪ የሚነገሩ ቋንቋዎች\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"በመግቢያው ላይ አናርሎግ ይጀምሩ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ማሳወቂያዎች\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ስብሰባው ሲያልቅ ያቁሙ\"],\"jzmguI\":[\"ስብሰባዎች\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ቋንቋ ምረጥ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ቋንቋ አክል\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ስብሰባ ሲጀምር ጀምር\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"የሚነገር ቋንቋ ያክሉ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ቋንቋ ፈልግ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ቋንቋ እና ክልል\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"የአጠቃቀም ውሂብ አጋራ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"መተግበሪያ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ተጨማሪ የሚነገሩ ቋንቋዎች\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"በመግቢያው ላይ አናርሎግ ይጀምሩ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ማሳወቂያዎች\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ስብሰባው ሲያልቅ ያቁሙ\"],\"jzmguI\":[\"ስብሰባዎች\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ቋንቋ ምረጥ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ar/messages.po b/apps/desktop/src/i18n/locales/ar/messages.po index 9c8c5744aaa..fe4e08cf530 100644 --- a/apps/desktop/src/i18n/locales/ar/messages.po +++ b/apps/desktop/src/i18n/locales/ar/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ar/messages.ts b/apps/desktop/src/i18n/locales/ar/messages.ts index d92f4bc0019..8ad8bb567c0 100644 --- a/apps/desktop/src/i18n/locales/ar/messages.ts +++ b/apps/desktop/src/i18n/locales/ar/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"إضافة لغة\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ابدأ عندما يبدأ الاجتماع\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"إضافة لغة منطوقة\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"لغة البحث...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"اللغة والمنطقة\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"مشاركة بيانات الاستخدام\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"التطبيق\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اللغات المنطوقة الإضافية\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ابدأ Anarlog عند تسجيل الدخول\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"الإشعارات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"توقف عند انتهاء الاجتماع\"],\"jzmguI\":[\"الاجتماعات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"لم يتم العثور على لغات مطابقة\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"حدد اللغة\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"إضافة لغة\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ابدأ عندما يبدأ الاجتماع\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"إضافة لغة منطوقة\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"لغة البحث...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"اللغة والمنطقة\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"مشاركة بيانات الاستخدام\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"التطبيق\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اللغات المنطوقة الإضافية\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ابدأ Anarlog عند تسجيل الدخول\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"الإشعارات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"توقف عند انتهاء الاجتماع\"],\"jzmguI\":[\"الاجتماعات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"لم يتم العثور على لغات مطابقة\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"حدد اللغة\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/as/messages.po b/apps/desktop/src/i18n/locales/as/messages.po index 5096f986c27..08643417852 100644 --- a/apps/desktop/src/i18n/locales/as/messages.po +++ b/apps/desktop/src/i18n/locales/as/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/as/messages.ts b/apps/desktop/src/i18n/locales/as/messages.ts index d5739370e5a..b913addde86 100644 --- a/apps/desktop/src/i18n/locales/as/messages.ts +++ b/apps/desktop/src/i18n/locales/as/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"মূল ভাষা\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ কৰক\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং আৰম্ভ হ'লে আৰম্ভ কৰক\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথিত ভাষা যোগ কৰক\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"অন্বেষণ ভাষা...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ভাষা আৰু অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যৱহাৰৰ তথ্য অংশীদাৰী কৰক\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"এপ্প\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিৰিক্ত কথিত ভাষা\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"প্ৰৱেশৰ সময়ত Anarlog আৰম্ভ কৰক\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"জাননীসমূহ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"মিটিং শেষ হ'লে বন্ধ কৰক\"],\"jzmguI\":[\"সভাসমূহ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ভাষা নিৰ্বাচন কৰক\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"মূল ভাষা\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ কৰক\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং আৰম্ভ হ'লে আৰম্ভ কৰক\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথিত ভাষা যোগ কৰক\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"অন্বেষণ ভাষা...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ভাষা আৰু অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যৱহাৰৰ তথ্য অংশীদাৰী কৰক\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"এপ্প\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিৰিক্ত কথিত ভাষা\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"প্ৰৱেশৰ সময়ত Anarlog আৰম্ভ কৰক\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"জাননীসমূহ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"মিটিং শেষ হ'লে বন্ধ কৰক\"],\"jzmguI\":[\"সভাসমূহ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ভাষা নিৰ্বাচন কৰক\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/az/messages.po b/apps/desktop/src/i18n/locales/az/messages.po index 6a2cd853a38..2010358b551 100644 --- a/apps/desktop/src/i18n/locales/az/messages.po +++ b/apps/desktop/src/i18n/locales/az/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/az/messages.ts b/apps/desktop/src/i18n/locales/az/messages.ts index 08046d46f39..9406fd47a3f 100644 --- a/apps/desktop/src/i18n/locales/az/messages.ts +++ b/apps/desktop/src/i18n/locales/az/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Əsas dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil əlavə edin\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Görüş başlayanda başlayın\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Danışıq dili əlavə edin\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Dil axtarın...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil və Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"İstifadə datasını paylaşın\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Tətbiq\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Əlavə danışıq dilləri\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Giriş zamanı Analoqu başladın\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirişlər\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Görüş bitəndə dayandırın\"],\"jzmguI\":[\"Görüşlər\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Uyğun dil tapılmadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dil seçin\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Əsas dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil əlavə edin\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Görüş başlayanda başlayın\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Danışıq dili əlavə edin\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Dil axtarın...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil və Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"İstifadə datasını paylaşın\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Tətbiq\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Əlavə danışıq dilləri\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Giriş zamanı Analoqu başladın\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirişlər\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Görüş bitəndə dayandırın\"],\"jzmguI\":[\"Görüşlər\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Uyğun dil tapılmadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Dil seçin\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ba/messages.po b/apps/desktop/src/i18n/locales/ba/messages.po index 33cf63d64e0..0c77b47a14e 100644 --- a/apps/desktop/src/i18n/locales/ba/messages.po +++ b/apps/desktop/src/i18n/locales/ba/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ba/messages.ts b/apps/desktop/src/i18n/locales/ba/messages.ts index 20a8d6acf38..0c9c1348afa 100644 --- a/apps/desktop/src/i18n/locales/ba/messages.ts +++ b/apps/desktop/src/i18n/locales/ba/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өҫтәү\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Осрашыу башланғас башла\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Һөйләү телен өҫтәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Эҙләү теле...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тел һәм төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ҡулланыу мәғлүмәттәре менән уртаҡлашыу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ҡушымта\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өҫтәмә һөйләү телдәре\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Логин ваҡытында Анарлогты башлағыҙ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хәбәр итеүҙәр\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Осрашыу тамамланғас туҡта\"],\"jzmguI\":[\"Осрашыуҙар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тап килгән телдәр табылмаған\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Телде һайлау\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өҫтәү\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Осрашыу башланғас башла\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Һөйләү телен өҫтәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Эҙләү теле...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тел һәм төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ҡулланыу мәғлүмәттәре менән уртаҡлашыу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ҡушымта\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өҫтәмә һөйләү телдәре\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Логин ваҡытында Анарлогты башлағыҙ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хәбәр итеүҙәр\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Осрашыу тамамланғас туҡта\"],\"jzmguI\":[\"Осрашыуҙар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тап килгән телдәр табылмаған\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Телде һайлау\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/be/messages.po b/apps/desktop/src/i18n/locales/be/messages.po index 9c5e293dde7..29807f4df87 100644 --- a/apps/desktop/src/i18n/locales/be/messages.po +++ b/apps/desktop/src/i18n/locales/be/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/be/messages.ts b/apps/desktop/src/i18n/locales/be/messages.ts index d29675ca55c..33cfb3b302b 100644 --- a/apps/desktop/src/i18n/locales/be/messages.ts +++ b/apps/desktop/src/i18n/locales/be/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Асноўная мова\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Дадаць мову\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Пачаць, калі пачынаецца сустрэча\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Дадаць гутарковую мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Мова і рэгіён\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Абагульваць дадзеныя аб выкарыстанні\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Прыкладанне\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дадатковыя размоўныя мовы\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запусціць Anarlog пры ўваходзе ў сістэму\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Апавяшчэнні\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Спыніцца, калі сустрэча скончыцца\"],\"jzmguI\":[\"Сустрэчы\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не знойдзена адпаведных моў\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Выбраць мову\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Асноўная мова\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Дадаць мову\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Пачаць, калі пачынаецца сустрэча\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Дадаць гутарковую мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Мова і рэгіён\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Абагульваць дадзеныя аб выкарыстанні\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Прыкладанне\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дадатковыя размоўныя мовы\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запусціць Anarlog пры ўваходзе ў сістэму\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Апавяшчэнні\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Спыніцца, калі сустрэча скончыцца\"],\"jzmguI\":[\"Сустрэчы\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не знойдзена адпаведных моў\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Выбраць мову\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bg/messages.po b/apps/desktop/src/i18n/locales/bg/messages.po index af229ee5589..aef1481684a 100644 --- a/apps/desktop/src/i18n/locales/bg/messages.po +++ b/apps/desktop/src/i18n/locales/bg/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bg/messages.ts b/apps/desktop/src/i18n/locales/bg/messages.ts index 5e1858ef145..e5296f47ed2 100644 --- a/apps/desktop/src/i18n/locales/bg/messages.ts +++ b/apps/desktop/src/i18n/locales/bg/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основен език\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавяне на език\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете, когато срещата започне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавяне на говорим език\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Език за търсене...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Език и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделяне на данни за използване\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Допълнителни говорими езици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Стартирайте Anarlog при влизане\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Известия\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Спрете, когато срещата приключи\"],\"jzmguI\":[\"Срещи\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Няма намерени съответстващи езици\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Избор на език\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основен език\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавяне на език\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете, когато срещата започне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавяне на говорим език\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Език за търсене...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Език и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделяне на данни за използване\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Допълнителни говорими езици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Стартирайте Anarlog при влизане\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Известия\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Спрете, когато срещата приключи\"],\"jzmguI\":[\"Срещи\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Няма намерени съответстващи езици\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Избор на език\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bn/messages.po b/apps/desktop/src/i18n/locales/bn/messages.po index 8ccb2aab2bc..4bb9519f384 100644 --- a/apps/desktop/src/i18n/locales/bn/messages.po +++ b/apps/desktop/src/i18n/locales/bn/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bn/messages.ts b/apps/desktop/src/i18n/locales/bn/messages.ts index 5bb359d8385..e05b8b594e7 100644 --- a/apps/desktop/src/i18n/locales/bn/messages.ts +++ b/apps/desktop/src/i18n/locales/bn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ করুন\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং শুরু হলে শুরু করুন\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথ্য ভাষা যোগ করুন\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ভাষা খুঁজুন...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ভাষা ও অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যবহারের ডেটা শেয়ার করুন\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"অ্যাপ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিরিক্ত কথ্য ভাষা\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"লগইনে অ্যানারলগ শুরু করুন\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"বিজ্ঞপ্তি\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"মিটিং শেষ হলে থামুন\"],\"jzmguI\":[\"মিটিং\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ভাষা নির্বাচন করুন\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ করুন\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং শুরু হলে শুরু করুন\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথ্য ভাষা যোগ করুন\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ভাষা খুঁজুন...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ভাষা ও অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ব্যবহারের ডেটা শেয়ার করুন\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"অ্যাপ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিরিক্ত কথ্য ভাষা\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"লগইনে অ্যানারলগ শুরু করুন\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"বিজ্ঞপ্তি\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"মিটিং শেষ হলে থামুন\"],\"jzmguI\":[\"মিটিং\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ভাষা নির্বাচন করুন\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bo/messages.po b/apps/desktop/src/i18n/locales/bo/messages.po index cdc89daf1ea..fe41e6dc768 100644 --- a/apps/desktop/src/i18n/locales/bo/messages.po +++ b/apps/desktop/src/i18n/locales/bo/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bo/messages.ts b/apps/desktop/src/i18n/locales/bo/messages.ts index ccb757583df..9223e1c234a 100644 --- a/apps/desktop/src/i18n/locales/bo/messages.ts +++ b/apps/desktop/src/i18n/locales/bo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"སྐད་ཡིག་ཁ་སྣོན\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ཚོགས་འདུ་འགོ་འཛུགས་སྐབས་འགོ་འཛུགས།\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"སྐད་ཆའི་སྐད་ཡིག་ཁ་སྣོན\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"འཚོལ་ཞིབ་སྐད་ཡིག...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"སྐད་ཡིག་དང་ས་ཁུལ།\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"བེད་སྤྱོད་ཀྱི་གཞི་གྲངས་མཉམ་སྤྱོད།\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ཁ་སྣོན་གྱི་སྐད་ཆ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ནང་འཇུག་བྱེད་སྐབས་ཨ་ནར་ལོག་འགོ་འཛུགས།\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"བརྡ་ཐོ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ཚོགས་འདུ་གྲོལ་རྗེས་མཚམས་འཇོག་དགོས།\"],\"jzmguI\":[\"ཚོགས་འདུ།\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"སྐད་ཡིག་འདེམས།\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"སྐད་ཡིག་ཁ་སྣོན\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ཚོགས་འདུ་འགོ་འཛུགས་སྐབས་འགོ་འཛུགས།\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"སྐད་ཆའི་སྐད་ཡིག་ཁ་སྣོན\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"འཚོལ་ཞིབ་སྐད་ཡིག...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"སྐད་ཡིག་དང་ས་ཁུལ།\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"བེད་སྤྱོད་ཀྱི་གཞི་གྲངས་མཉམ་སྤྱོད།\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ཁ་སྣོན་གྱི་སྐད་ཆ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ནང་འཇུག་བྱེད་སྐབས་ཨ་ནར་ལོག་འགོ་འཛུགས།\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"བརྡ་ཐོ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ཚོགས་འདུ་གྲོལ་རྗེས་མཚམས་འཇོག་དགོས།\"],\"jzmguI\":[\"ཚོགས་འདུ།\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"སྐད་ཡིག་འདེམས།\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/br/messages.po b/apps/desktop/src/i18n/locales/br/messages.po index e6a54af7a90..ff0a2d26fd4 100644 --- a/apps/desktop/src/i18n/locales/br/messages.po +++ b/apps/desktop/src/i18n/locales/br/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/br/messages.ts b/apps/desktop/src/i18n/locales/br/messages.ts index fb716a07357..0c06deb8aad 100644 --- a/apps/desktop/src/i18n/locales/br/messages.ts +++ b/apps/desktop/src/i18n/locales/br/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Yezh pennañ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ouzhpennañ ur yezh\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kregiñ pa grogo an emvod\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ouzhpennañ ar yezh komzet\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Klask yezh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Yezh & Rannvro\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rannañ roadennoù implij\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Arload\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yezhoù komzet ouzhpenn\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kregiñ gant an Anarlog pa vez kevreet\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kemennadennoù\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Paouez pa vo echu an emvod\"],\"jzmguI\":[\"Emvodoù\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"N'eus bet kavet yezh ebet a glot\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dibab yezh\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Yezh pennañ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ouzhpennañ ur yezh\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kregiñ pa grogo an emvod\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ouzhpennañ ar yezh komzet\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Klask yezh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Yezh & Rannvro\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rannañ roadennoù implij\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Arload\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yezhoù komzet ouzhpenn\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kregiñ gant an Anarlog pa vez kevreet\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kemennadennoù\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Paouez pa vo echu an emvod\"],\"jzmguI\":[\"Emvodoù\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"N'eus bet kavet yezh ebet a glot\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Dibab yezh\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bs/messages.po b/apps/desktop/src/i18n/locales/bs/messages.po index 5f310161dc7..63e7bc2ceb0 100644 --- a/apps/desktop/src/i18n/locales/bs/messages.po +++ b/apps/desktop/src/i18n/locales/bs/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bs/messages.ts b/apps/desktop/src/i18n/locales/bs/messages.ts index 21ae3758ae2..0401221b5bb 100644 --- a/apps/desktop/src/i18n/locales/bs/messages.ts +++ b/apps/desktop/src/i18n/locales/bs/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Započni kada sastanak počne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Pretraži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dijelite podatke o korištenju\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obaveštenja\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Odaberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Započni kada sastanak počne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Pretraži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dijelite podatke o korištenju\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obaveštenja\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Odaberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ca/messages.po b/apps/desktop/src/i18n/locales/ca/messages.po index 4a191e994cd..542fd1f4081 100644 --- a/apps/desktop/src/i18n/locales/ca/messages.po +++ b/apps/desktop/src/i18n/locales/ca/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ca/messages.ts b/apps/desktop/src/i18n/locales/ca/messages.ts index 4438ef6c447..ea540ec32d1 100644 --- a/apps/desktop/src/i18n/locales/ca/messages.ts +++ b/apps/desktop/src/i18n/locales/ca/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Afegeix un idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comenceu quan comenci la reunió\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Afegeix un idioma parlat\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Cerca l'idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma i regió\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Comparteix les dades d'ús\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicació\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomes parlats addicionals\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Inicieu Anarlog en iniciar sessió\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Atura't quan acabi la reunió\"],\"jzmguI\":[\"Reunions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No s'han trobat idiomes coincidents\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccioneu l'idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Afegeix un idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comenceu quan comenci la reunió\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Afegeix un idioma parlat\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Cerca l'idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma i regió\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Comparteix les dades d'ús\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicació\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomes parlats addicionals\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Inicieu Anarlog en iniciar sessió\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Atura't quan acabi la reunió\"],\"jzmguI\":[\"Reunions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No s'han trobat idiomes coincidents\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Seleccioneu l'idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/cs/messages.po b/apps/desktop/src/i18n/locales/cs/messages.po index 539f1be1c7c..ef0aa6ce6a4 100644 --- a/apps/desktop/src/i18n/locales/cs/messages.po +++ b/apps/desktop/src/i18n/locales/cs/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/cs/messages.ts b/apps/desktop/src/i18n/locales/cs/messages.ts index fb02a55ee5d..6180beddc6e 100644 --- a/apps/desktop/src/i18n/locales/cs/messages.ts +++ b/apps/desktop/src/i18n/locales/cs/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavní jazyk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Přidat jazyk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začít při zahájení schůzky\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Přidat mluvený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Jazyk vyhledávání...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jazyk a oblast\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Sdílet údaje o využití\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikace\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Další mluvené jazyky\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Spustit Anarlog při přihlášení\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Oznámení\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zastavit, když schůzka skončí\"],\"jzmguI\":[\"Schůzky\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nebyly nalezeny žádné odpovídající jazyky\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavní jazyk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Přidat jazyk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začít při zahájení schůzky\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Přidat mluvený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Jazyk vyhledávání...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jazyk a oblast\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Sdílet údaje o využití\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikace\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Další mluvené jazyky\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Spustit Anarlog při přihlášení\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Oznámení\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zastavit, když schůzka skončí\"],\"jzmguI\":[\"Schůzky\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nebyly nalezeny žádné odpovídající jazyky\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/cy/messages.po b/apps/desktop/src/i18n/locales/cy/messages.po index 661e9222a38..5b6d799258e 100644 --- a/apps/desktop/src/i18n/locales/cy/messages.po +++ b/apps/desktop/src/i18n/locales/cy/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/cy/messages.ts b/apps/desktop/src/i18n/locales/cy/messages.ts index d07436f000c..fd8529e3d8b 100644 --- a/apps/desktop/src/i18n/locales/cy/messages.ts +++ b/apps/desktop/src/i18n/locales/cy/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Prif iaith\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ychwanegu iaith\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dechrau pan fydd y cyfarfod yn dechrau\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ychwanegu iaith lafar\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Iaith chwilio...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Iaith a Rhanbarth\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rhannu data defnydd\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ap\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ieithoedd llafar ychwanegol\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Dechrau Anarlog wrth fewngofnodi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Hysbysiadau\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopiwch pan ddaw'r cyfarfod i ben\"],\"jzmguI\":[\"Cyfarfodydd\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni chanfuwyd ieithoedd sy'n cyfateb\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dewiswch iaith\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Prif iaith\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ychwanegu iaith\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dechrau pan fydd y cyfarfod yn dechrau\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ychwanegu iaith lafar\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Iaith chwilio...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Iaith a Rhanbarth\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Rhannu data defnydd\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ap\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ieithoedd llafar ychwanegol\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Dechrau Anarlog wrth fewngofnodi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Hysbysiadau\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopiwch pan ddaw'r cyfarfod i ben\"],\"jzmguI\":[\"Cyfarfodydd\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni chanfuwyd ieithoedd sy'n cyfateb\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Dewiswch iaith\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/da/messages.po b/apps/desktop/src/i18n/locales/da/messages.po index 869be34e4a5..a88e9653277 100644 --- a/apps/desktop/src/i18n/locales/da/messages.po +++ b/apps/desktop/src/i18n/locales/da/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/da/messages.ts b/apps/desktop/src/i18n/locales/da/messages.ts index f7ff8135606..f6e96f25343 100644 --- a/apps/desktop/src/i18n/locales/da/messages.ts +++ b/apps/desktop/src/i18n/locales/da/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedsprog\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tilføj sprog\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start, når mødet begynder\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tilføj talesprog\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Søgesprog...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprog og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del brugsdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yderligere talte sprog\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Underretninger\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop, når mødet slutter\"],\"jzmguI\":[\"Møder\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Der blev ikke fundet nogen matchende sprog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vælg sprog\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedsprog\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tilføj sprog\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start, når mødet begynder\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tilføj talesprog\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Søgesprog...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprog og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del brugsdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yderligere talte sprog\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Underretninger\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop, når mødet slutter\"],\"jzmguI\":[\"Møder\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Der blev ikke fundet nogen matchende sprog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Vælg sprog\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/de/messages.po b/apps/desktop/src/i18n/locales/de/messages.po index 726f1565ff2..6da7452ece2 100644 --- a/apps/desktop/src/i18n/locales/de/messages.po +++ b/apps/desktop/src/i18n/locales/de/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/de/messages.ts b/apps/desktop/src/i18n/locales/de/messages.ts index 1d90629686d..a31dc6748fb 100644 --- a/apps/desktop/src/i18n/locales/de/messages.ts +++ b/apps/desktop/src/i18n/locales/de/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hauptsprache\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprache hinzufügen\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Beim Beginn des Meetings starten\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gesprochene Sprache hinzufügen\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sprache suchen...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprache & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nutzungsdaten teilen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Weitere gesprochene Sprachen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlog beim Anmelden starten\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Benachrichtigungen\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppen, wenn das Meeting endet\"],\"jzmguI\":[\"Treffen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keine passenden Sprachen gefunden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sprache auswählen\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hauptsprache\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprache hinzufügen\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Beim Beginn des Meetings starten\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gesprochene Sprache hinzufügen\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sprache suchen...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprache & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nutzungsdaten teilen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Weitere gesprochene Sprachen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlog beim Anmelden starten\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Benachrichtigungen\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppen, wenn das Meeting endet\"],\"jzmguI\":[\"Treffen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keine passenden Sprachen gefunden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Sprache auswählen\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/el/messages.po b/apps/desktop/src/i18n/locales/el/messages.po index c5275dc181d..376b2b5dc52 100644 --- a/apps/desktop/src/i18n/locales/el/messages.po +++ b/apps/desktop/src/i18n/locales/el/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/el/messages.ts b/apps/desktop/src/i18n/locales/el/messages.ts index f3005dae35c..f5bd7681200 100644 --- a/apps/desktop/src/i18n/locales/el/messages.ts +++ b/apps/desktop/src/i18n/locales/el/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Προσθήκη γλώσσας\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ξεκινήστε όταν ξεκινά η σύσκεψη\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Προσθήκη προφορικής γλώσσας\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Αναζήτηση γλώσσας...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Γλώσσα και περιοχή\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Κοινή χρήση δεδομένων χρήσης\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Εφαρμογή\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Πρόσθετες ομιλούμενες γλώσσες\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Ξεκινήστε το Anarlog κατά τη σύνδεση\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ειδοποιήσεις\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Διακοπή όταν τελειώσει η σύσκεψη\"],\"jzmguI\":[\"Συναντήσεις\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Επιλογή γλώσσας\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Προσθήκη γλώσσας\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ξεκινήστε όταν ξεκινά η σύσκεψη\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Προσθήκη προφορικής γλώσσας\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Αναζήτηση γλώσσας...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Γλώσσα και περιοχή\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Κοινή χρήση δεδομένων χρήσης\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Εφαρμογή\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Πρόσθετες ομιλούμενες γλώσσες\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Ξεκινήστε το Anarlog κατά τη σύνδεση\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ειδοποιήσεις\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Διακοπή όταν τελειώσει η σύσκεψη\"],\"jzmguI\":[\"Συναντήσεις\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Επιλογή γλώσσας\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/en/messages.po b/apps/desktop/src/i18n/locales/en/messages.po index 791693610e9..957b82bdada 100644 --- a/apps/desktop/src/i18n/locales/en/messages.po +++ b/apps/desktop/src/i18n/locales/en/messages.po @@ -45,6 +45,11 @@ msgstr "{0} is ready to use" msgid "{0} opened on" msgstr "{0} opened on" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "{0} pending edits" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "1 day" msgid "1 month" msgstr "1 month" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "1 pending edit" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "1 week" @@ -529,6 +538,14 @@ msgstr "Application menu" msgid "Apply to all" msgstr "Apply to all" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "Apply to memo" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "Apply to summary" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "Approval requested" @@ -1548,6 +1565,10 @@ msgstr "Data" msgid "Date and time are required" msgstr "Date and time are required" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "Decline" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "Default" @@ -2473,6 +2494,10 @@ msgstr "Loading Cloud API access" msgid "Loading devices" msgstr "Loading devices" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "Loading edit…" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "Loading models..." @@ -2641,6 +2666,7 @@ msgstr "members" msgid "Members" msgstr "Members" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "Memo" @@ -3652,6 +3678,14 @@ msgstr "Retention (days)" msgid "Retry" msgstr "Retry" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "Review memo" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "Review summary" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "Revoke" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "Summaries" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "Summary" @@ -4633,6 +4668,10 @@ msgstr "This device will start syncing after you approve it from another signed- msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "This device's sync identity does not match your account. Sign in again or check Sync settings." +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "This edit is no longer pending." + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." @@ -4839,6 +4878,10 @@ msgstr "Untitled automation" msgid "Untitled Note" msgstr "Untitled Note" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "Untitled session" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "Upcoming bot attendance" diff --git a/apps/desktop/src/i18n/locales/en/messages.ts b/apps/desktop/src/i18n/locales/en/messages.ts index 20afa9bc246..40e0ca24c39 100644 --- a/apps/desktop/src/i18n/locales/en/messages.ts +++ b/apps/desktop/src/i18n/locales/en/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Main language\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Add language\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start when meeting begins\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Add spoken language\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Search language...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Language & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Share usage data\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional spoken languages\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog at login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop when meeting ends\"],\"jzmguI\":[\"Meetings\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No matching languages found\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Select language\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Main language\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Add language\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start when meeting begins\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Add spoken language\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Search language...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Language & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Share usage data\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional spoken languages\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog at login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop when meeting ends\"],\"jzmguI\":[\"Meetings\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No matching languages found\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Select language\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/es/messages.po b/apps/desktop/src/i18n/locales/es/messages.po index d5c06aecc54..60ddab0e4b1 100644 --- a/apps/desktop/src/i18n/locales/es/messages.po +++ b/apps/desktop/src/i18n/locales/es/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/es/messages.ts b/apps/desktop/src/i18n/locales/es/messages.ts index 1527d1ad29a..e9ef48d1f15 100644 --- a/apps/desktop/src/i18n/locales/es/messages.ts +++ b/apps/desktop/src/i18n/locales/es/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Añadir idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar cuando comience la reunión\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Añadir idioma hablado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma y región\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicación\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas hablados adicionales\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog al iniciar sesión\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Detener cuando termine la reunión\"],\"jzmguI\":[\"Reuniones\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No se encontraron idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Añadir idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar cuando comience la reunión\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Añadir idioma hablado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma y región\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicación\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas hablados adicionales\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog al iniciar sesión\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Detener cuando termine la reunión\"],\"jzmguI\":[\"Reuniones\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"No se encontraron idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/et/messages.po b/apps/desktop/src/i18n/locales/et/messages.po index 7b49e2d7941..8667af0d818 100644 --- a/apps/desktop/src/i18n/locales/et/messages.po +++ b/apps/desktop/src/i18n/locales/et/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/et/messages.ts b/apps/desktop/src/i18n/locales/et/messages.ts index 3616d8e0bc0..0c7b9a9b41a 100644 --- a/apps/desktop/src/i18n/locales/et/messages.ts +++ b/apps/desktop/src/i18n/locales/et/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Põhikeel\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisage keel\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Alusta koosoleku alguses\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lisage kõnekeel\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Otsingukeel...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Keel ja piirkond\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kasutusandmete jagamine\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Rakendus\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Täiendavad kõnekeeled\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Käivitage sisselogimisel Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Märguanded\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Peatage koosoleku lõppedes\"],\"jzmguI\":[\"Koosolekud\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Sobivaid keeli ei leitud\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Valige keel\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Põhikeel\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisage keel\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Alusta koosoleku alguses\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lisage kõnekeel\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Otsingukeel...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Keel ja piirkond\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kasutusandmete jagamine\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Rakendus\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Täiendavad kõnekeeled\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Käivitage sisselogimisel Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Märguanded\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Peatage koosoleku lõppedes\"],\"jzmguI\":[\"Koosolekud\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Sobivaid keeli ei leitud\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Valige keel\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/eu/messages.po b/apps/desktop/src/i18n/locales/eu/messages.po index 6656192a376..b4744866960 100644 --- a/apps/desktop/src/i18n/locales/eu/messages.po +++ b/apps/desktop/src/i18n/locales/eu/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/eu/messages.ts b/apps/desktop/src/i18n/locales/eu/messages.ts index 991138c41c3..a91a769f43c 100644 --- a/apps/desktop/src/i18n/locales/eu/messages.ts +++ b/apps/desktop/src/i18n/locales/eu/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hizkuntza nagusia\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Gehitu hizkuntza\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Hasi bilera hasten denean\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gehitu ahozko hizkuntza\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Bilatu hizkuntza...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Hizkuntza eta eskualdea\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partekatu erabilera datuak\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikazioa\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ahozko hizkuntza gehigarriak\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Hasi Anarlog saioa hasten denean\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Jakinarazpenak\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Gelditu bilera amaitzen denean\"],\"jzmguI\":[\"Bilkurak\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ez da bat datorren hizkuntzarik aurkitu\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Hautatu hizkuntza\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hizkuntza nagusia\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Gehitu hizkuntza\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Hasi bilera hasten denean\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gehitu ahozko hizkuntza\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Bilatu hizkuntza...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Hizkuntza eta eskualdea\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partekatu erabilera datuak\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikazioa\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ahozko hizkuntza gehigarriak\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Hasi Anarlog saioa hasten denean\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Jakinarazpenak\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Gelditu bilera amaitzen denean\"],\"jzmguI\":[\"Bilkurak\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ez da bat datorren hizkuntzarik aurkitu\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Hautatu hizkuntza\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fa/messages.po b/apps/desktop/src/i18n/locales/fa/messages.po index 55d830ba28b..36a58ed0b40 100644 --- a/apps/desktop/src/i18n/locales/fa/messages.po +++ b/apps/desktop/src/i18n/locales/fa/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fa/messages.ts b/apps/desktop/src/i18n/locales/fa/messages.ts index bddeef096da..f163c2bc79e 100644 --- a/apps/desktop/src/i18n/locales/fa/messages.ts +++ b/apps/desktop/src/i18n/locales/fa/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"زبان اصلی\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"افزودن زبان\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"با شروع جلسه شروع شود\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"افزودن زبان گفتاری\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"زبان جستجو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"زبان و منطقه\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"به اشتراک گذاری داده های استفاده\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"برنامه\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"زبان‌های گفتاری دیگر\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlog را با ورود شروع کنید\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اعلان‌ها\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"وقتی جلسه تمام شد متوقف شود\"],\"jzmguI\":[\"جلسات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیچ زبان منطبقی یافت نشد\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"زبان را انتخاب کنید\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"زبان اصلی\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"افزودن زبان\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"با شروع جلسه شروع شود\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"افزودن زبان گفتاری\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"زبان جستجو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"زبان و منطقه\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"به اشتراک گذاری داده های استفاده\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"برنامه\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"زبان‌های گفتاری دیگر\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlog را با ورود شروع کنید\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اعلان‌ها\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"وقتی جلسه تمام شد متوقف شود\"],\"jzmguI\":[\"جلسات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیچ زبان منطبقی یافت نشد\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"زبان را انتخاب کنید\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ff/messages.po b/apps/desktop/src/i18n/locales/ff/messages.po index d29774d03d6..834f5a58636 100644 --- a/apps/desktop/src/i18n/locales/ff/messages.po +++ b/apps/desktop/src/i18n/locales/ff/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ff/messages.ts b/apps/desktop/src/i18n/locales/ff/messages.ts index 8ecc9e8da3c..780a68bab84 100644 --- a/apps/desktop/src/i18n/locales/ff/messages.ts +++ b/apps/desktop/src/i18n/locales/ff/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ɗemngal mawngal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ɓeydu ɗemngal\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fuɗɗo so batu fuɗɗiima\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ɓeydu ɗemngal haalteengal\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Ɗemngal njiylawu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ɗemngal e Diiwaan\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Renndinde dokke kuutoragol\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Kuutorgal\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ɗemɗe kaaleteeɗe ɓeydaaɗe\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Fuɗɗo Anarlog e naatgol\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Noddaango\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Darto so batu nguu gasii\"],\"jzmguI\":[\"Kawrital\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ɗemɗe nannduɗe alaa tawaa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Suɓo ɗemngal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ɗemngal mawngal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ɓeydu ɗemngal\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fuɗɗo so batu fuɗɗiima\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ɓeydu ɗemngal haalteengal\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Ɗemngal njiylawu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ɗemngal e Diiwaan\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Renndinde dokke kuutoragol\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Kuutorgal\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ɗemɗe kaaleteeɗe ɓeydaaɗe\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Fuɗɗo Anarlog e naatgol\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Noddaango\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Darto so batu nguu gasii\"],\"jzmguI\":[\"Kawrital\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ɗemɗe nannduɗe alaa tawaa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Suɓo ɗemngal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fi/messages.po b/apps/desktop/src/i18n/locales/fi/messages.po index f8f1a3b36ae..9435c30f3db 100644 --- a/apps/desktop/src/i18n/locales/fi/messages.po +++ b/apps/desktop/src/i18n/locales/fi/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fi/messages.ts b/apps/desktop/src/i18n/locales/fi/messages.ts index 7b2c41889be..be00731f652 100644 --- a/apps/desktop/src/i18n/locales/fi/messages.ts +++ b/apps/desktop/src/i18n/locales/fi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pääkieli\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisää kieli\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aloita kokouksen alkaessa\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lisää puhuttu kieli\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Hakukieli...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Kieli ja alue\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Jaa käyttötiedot\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Sovellus\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Muita puhuttuja kieliä\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Käynnistä Anarlog sisäänkirjautumisen yhteydessä\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ilmoitukset\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Lopeta, kun kokous päättyy\"],\"jzmguI\":[\"Kokoukset\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Vastaavia kieliä ei löytynyt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Valitse kieli\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pääkieli\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisää kieli\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aloita kokouksen alkaessa\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lisää puhuttu kieli\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Hakukieli...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Kieli ja alue\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Jaa käyttötiedot\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Sovellus\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Muita puhuttuja kieliä\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Käynnistä Anarlog sisäänkirjautumisen yhteydessä\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ilmoitukset\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Lopeta, kun kokous päättyy\"],\"jzmguI\":[\"Kokoukset\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Vastaavia kieliä ei löytynyt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Valitse kieli\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fo/messages.po b/apps/desktop/src/i18n/locales/fo/messages.po index 0dcbbbbf311..fca8a1dcab6 100644 --- a/apps/desktop/src/i18n/locales/fo/messages.po +++ b/apps/desktop/src/i18n/locales/fo/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fo/messages.ts b/apps/desktop/src/i18n/locales/fo/messages.ts index 5dd8298d4a5..628533e67b5 100644 --- a/apps/desktop/src/i18n/locales/fo/messages.ts +++ b/apps/desktop/src/i18n/locales/fo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Høvuðsmál\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg mál til\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrja tá møtið byrjar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg talumál til\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Leitimál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Mál og øki\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deil nýtsludátur\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Forrit\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Eyka talumál\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Byrja Anarlog við innritan\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fráboðanir\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Steðga á, tá ið fundurin endar\"],\"jzmguI\":[\"Fundir\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Einki samsvarandi mál er funnið\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vel mál\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Høvuðsmál\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg mál til\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrja tá møtið byrjar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg talumál til\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Leitimál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Mál og øki\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deil nýtsludátur\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Forrit\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Eyka talumál\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Byrja Anarlog við innritan\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fráboðanir\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Steðga á, tá ið fundurin endar\"],\"jzmguI\":[\"Fundir\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Einki samsvarandi mál er funnið\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Vel mál\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fr/messages.po b/apps/desktop/src/i18n/locales/fr/messages.po index 3aa9127d0a9..a713924aa53 100644 --- a/apps/desktop/src/i18n/locales/fr/messages.po +++ b/apps/desktop/src/i18n/locales/fr/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fr/messages.ts b/apps/desktop/src/i18n/locales/fr/messages.ts index 46f320f78c9..d4b98f9fb58 100644 --- a/apps/desktop/src/i18n/locales/fr/messages.ts +++ b/apps/desktop/src/i18n/locales/fr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Langue principale\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajouter une langue\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Démarrer au début de la réunion\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ajouter une langue parlée\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Rechercher une langue...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Langue et région\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partager les données d'utilisation\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Application\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Langues parlées supplémentaires\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Lancer Anarlog à la connexion\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Arrêter à la fin de la réunion\"],\"jzmguI\":[\"Réunions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Aucune langue correspondante trouvée\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sélectionner une langue\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Langue principale\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajouter une langue\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Démarrer au début de la réunion\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ajouter une langue parlée\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Rechercher une langue...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Langue et région\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partager les données d'utilisation\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Application\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Langues parlées supplémentaires\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Lancer Anarlog à la connexion\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Arrêter à la fin de la réunion\"],\"jzmguI\":[\"Réunions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Aucune langue correspondante trouvée\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Sélectionner une langue\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ga/messages.po b/apps/desktop/src/i18n/locales/ga/messages.po index 1ac638fec67..9da885c955d 100644 --- a/apps/desktop/src/i18n/locales/ga/messages.po +++ b/apps/desktop/src/i18n/locales/ga/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ga/messages.ts b/apps/desktop/src/i18n/locales/ga/messages.ts index 05e65e012f4..a5dff47c2ac 100644 --- a/apps/desktop/src/i18n/locales/ga/messages.ts +++ b/apps/desktop/src/i18n/locales/ga/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Príomhtheanga\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Cuir teanga leis\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tosaigh nuair a thosaíonn an cruinniú\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Cuir teanga labhartha leis\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Teanga chuardaigh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Teanga & Réigiún\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Comhroinn sonraí úsáide\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aip\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Teangacha breise labhartha\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tosaigh Anarlog ag logáil isteach\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fógraí\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop nuair a thagann deireadh leis an gcruinniú\"],\"jzmguI\":[\"Cruinnithe\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Níor aimsíodh aon teanga chomhoiriúnach\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Roghnaigh teanga\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Príomhtheanga\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Cuir teanga leis\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tosaigh nuair a thosaíonn an cruinniú\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Cuir teanga labhartha leis\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Teanga chuardaigh...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Teanga & Réigiún\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Comhroinn sonraí úsáide\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aip\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Teangacha breise labhartha\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tosaigh Anarlog ag logáil isteach\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fógraí\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stop nuair a thagann deireadh leis an gcruinniú\"],\"jzmguI\":[\"Cruinnithe\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Níor aimsíodh aon teanga chomhoiriúnach\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Roghnaigh teanga\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/gl/messages.po b/apps/desktop/src/i18n/locales/gl/messages.po index d7e8a150a7f..3a7ffaf9d53 100644 --- a/apps/desktop/src/i18n/locales/gl/messages.po +++ b/apps/desktop/src/i18n/locales/gl/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/gl/messages.ts b/apps/desktop/src/i18n/locales/gl/messages.ts index 0514328eadc..10c07338d59 100644 --- a/apps/desktop/src/i18n/locales/gl/messages.ts +++ b/apps/desktop/src/i18n/locales/gl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engadir idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comezar cando comece a reunión\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Engadir idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma e rexión\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicación\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog ao iniciar sesión\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacións\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Para cando remate a reunión\"],\"jzmguI\":[\"Reunións\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non se atoparon idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engadir idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comezar cando comece a reunión\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Engadir idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Buscar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma e rexión\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicación\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog ao iniciar sesión\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacións\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Para cando remate a reunión\"],\"jzmguI\":[\"Reunións\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non se atoparon idiomas coincidentes\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/gu/messages.po b/apps/desktop/src/i18n/locales/gu/messages.po index 2e7617d916d..c55b3317c0c 100644 --- a/apps/desktop/src/i18n/locales/gu/messages.po +++ b/apps/desktop/src/i18n/locales/gu/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/gu/messages.ts b/apps/desktop/src/i18n/locales/gu/messages.ts index cef83d7f67f..30d0291e457 100644 --- a/apps/desktop/src/i18n/locales/gu/messages.ts +++ b/apps/desktop/src/i18n/locales/gu/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ભાષા ઉમેરો\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"મીટિંગ શરૂ થાય ત્યારે શરૂ કરો\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"બોલાતી ભાષા ઉમેરો\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ભાષા શોધો...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ભાષા અને પ્રદેશ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"વપરાશનો ડેટા શેર કરો\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"એપ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"અતિરિક્ત બોલાતી ભાષાઓ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"લોગિન પર એનાલોગ શરૂ કરો\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"સૂચના\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"મીટિંગ સમાપ્ત થાય ત્યારે રોકો\"],\"jzmguI\":[\"મીટિંગ્સ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ભાષા પસંદ કરો\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ભાષા ઉમેરો\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"મીટિંગ શરૂ થાય ત્યારે શરૂ કરો\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"બોલાતી ભાષા ઉમેરો\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ભાષા શોધો...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ભાષા અને પ્રદેશ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"વપરાશનો ડેટા શેર કરો\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"એપ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"અતિરિક્ત બોલાતી ભાષાઓ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"લોગિન પર એનાલોગ શરૂ કરો\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"સૂચના\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"મીટિંગ સમાપ્ત થાય ત્યારે રોકો\"],\"jzmguI\":[\"મીટિંગ્સ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ભાષા પસંદ કરો\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ha/messages.po b/apps/desktop/src/i18n/locales/ha/messages.po index ad62b36a4e3..2f53c5b7081 100644 --- a/apps/desktop/src/i18n/locales/ha/messages.po +++ b/apps/desktop/src/i18n/locales/ha/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ha/messages.ts b/apps/desktop/src/i18n/locales/ha/messages.ts index 447851261b8..96a17b5ad5c 100644 --- a/apps/desktop/src/i18n/locales/ha/messages.ts +++ b/apps/desktop/src/i18n/locales/ha/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Babban harshe\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ƙara harshe\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fara lokacin da aka fara taro\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ƙara yaren magana\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Yaren bincike...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Harshe & Yanki\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Raba bayanan amfani\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ƙarin harsunan magana\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Fara Anarlog a login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Sanarwa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dakata lokacin da taro ya ƙare\"],\"jzmguI\":[\"Taro\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ba a sami yarukan da suka dace ba\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Zaɓi harshe\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Babban harshe\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ƙara harshe\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fara lokacin da aka fara taro\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ƙara yaren magana\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Yaren bincike...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Harshe & Yanki\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Raba bayanan amfani\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ƙarin harsunan magana\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Fara Anarlog a login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Sanarwa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dakata lokacin da taro ya ƙare\"],\"jzmguI\":[\"Taro\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ba a sami yarukan da suka dace ba\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Zaɓi harshe\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/he/messages.po b/apps/desktop/src/i18n/locales/he/messages.po index 7f92694ea76..06559b5fbd4 100644 --- a/apps/desktop/src/i18n/locales/he/messages.po +++ b/apps/desktop/src/i18n/locales/he/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/he/messages.ts b/apps/desktop/src/i18n/locales/he/messages.ts index a3c79d2ccc1..1ccb6d506b7 100644 --- a/apps/desktop/src/i18n/locales/he/messages.ts +++ b/apps/desktop/src/i18n/locales/he/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"שפה ראשית\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"הוסף שפה\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"התחל כאשר הפגישה מתחילה\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"הוסף שפה מדוברת\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"שפת חיפוש...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"שפה ואזור\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"שתף נתוני שימוש\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אפליקציה\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"שפות מדוברות נוספות\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"התחל אנלוג בכניסה\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"התראות\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"עצור כאשר הפגישה מסתיימת\"],\"jzmguI\":[\"פגישות\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"לא נמצאו שפות מתאימות\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"בחר שפה\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"שפה ראשית\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"הוסף שפה\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"התחל כאשר הפגישה מתחילה\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"הוסף שפה מדוברת\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"שפת חיפוש...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"שפה ואזור\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"שתף נתוני שימוש\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אפליקציה\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"שפות מדוברות נוספות\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"התחל אנלוג בכניסה\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"התראות\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"עצור כאשר הפגישה מסתיימת\"],\"jzmguI\":[\"פגישות\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"לא נמצאו שפות מתאימות\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"בחר שפה\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hi/messages.po b/apps/desktop/src/i18n/locales/hi/messages.po index c0bd18a06f5..6f848623345 100644 --- a/apps/desktop/src/i18n/locales/hi/messages.po +++ b/apps/desktop/src/i18n/locales/hi/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hi/messages.ts b/apps/desktop/src/i18n/locales/hi/messages.ts index f7ae0d1ea03..d2582809f51 100644 --- a/apps/desktop/src/i18n/locales/hi/messages.ts +++ b/apps/desktop/src/i18n/locales/hi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोड़ें\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग शुरू होने पर प्रारंभ करें\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोली जाने वाली भाषा जोड़ें\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"खोज भाषा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डेटा साझा करें\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ऐप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोली जाने वाली भाषाएँ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लॉगिन पर अनारलॉग प्रारंभ करें\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचनाएँ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"मीटिंग ख़त्म होने पर रुकें\"],\"jzmguI\":[\"बैठकें\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषा चुनें\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोड़ें\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग शुरू होने पर प्रारंभ करें\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोली जाने वाली भाषा जोड़ें\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"खोज भाषा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डेटा साझा करें\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ऐप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोली जाने वाली भाषाएँ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लॉगिन पर अनारलॉग प्रारंभ करें\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचनाएँ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"मीटिंग ख़त्म होने पर रुकें\"],\"jzmguI\":[\"बैठकें\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"भाषा चुनें\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hr/messages.po b/apps/desktop/src/i18n/locales/hr/messages.po index 8031b2060e5..d070310c5df 100644 --- a/apps/desktop/src/i18n/locales/hr/messages.po +++ b/apps/desktop/src/i18n/locales/hr/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hr/messages.ts b/apps/desktop/src/i18n/locales/hr/messages.ts index 6a1a0a965c3..f8e9e8a7bd1 100644 --- a/apps/desktop/src/i18n/locales/hr/messages.ts +++ b/apps/desktop/src/i18n/locales/hr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodajte jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Počni kada sastanak počne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Traži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dijeljenje podataka o korištenju\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obavijesti\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Odaberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodajte jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Počni kada sastanak počne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Traži jezik...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dijeljenje podataka o korištenju\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obavijesti\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Odaberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ht/messages.po b/apps/desktop/src/i18n/locales/ht/messages.po index 6b90f14f646..c98cf00cf8d 100644 --- a/apps/desktop/src/i18n/locales/ht/messages.po +++ b/apps/desktop/src/i18n/locales/ht/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ht/messages.ts b/apps/desktop/src/i18n/locales/ht/messages.ts index 922d23c895d..f3e1af280a7 100644 --- a/apps/desktop/src/i18n/locales/ht/messages.ts +++ b/apps/desktop/src/i18n/locales/ht/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lang prensipal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajoute lang\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kòmanse lè reyinyon an kòmanse\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ajoute lang ki pale\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Rechèch lang...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lang ak Rejyon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pataje done itilizasyon\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasyon\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Anplis lang ki pale\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kòmanse Anarlog lè w konekte\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifikasyon\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Sispann lè reyinyon an fini\"],\"jzmguI\":[\"Reyinyon\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Okenn lang pa jwenn\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Chwazi lang\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lang prensipal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajoute lang\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kòmanse lè reyinyon an kòmanse\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ajoute lang ki pale\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Rechèch lang...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lang ak Rejyon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pataje done itilizasyon\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasyon\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Anplis lang ki pale\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kòmanse Anarlog lè w konekte\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifikasyon\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Sispann lè reyinyon an fini\"],\"jzmguI\":[\"Reyinyon\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Okenn lang pa jwenn\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Chwazi lang\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hu/messages.po b/apps/desktop/src/i18n/locales/hu/messages.po index 5e66d98b4d5..93005ede16f 100644 --- a/apps/desktop/src/i18n/locales/hu/messages.po +++ b/apps/desktop/src/i18n/locales/hu/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hu/messages.ts b/apps/desktop/src/i18n/locales/hu/messages.ts index 7ae0ecd23b1..73e1c812982 100644 --- a/apps/desktop/src/i18n/locales/hu/messages.ts +++ b/apps/desktop/src/i18n/locales/hu/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fő nyelv\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Nyelv hozzáadása\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"A megbeszélés kezdetekor kezdődik\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Beszélt nyelv hozzáadása\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Keresési nyelv...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Nyelv és régió\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Használati adatok megosztása\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Alkalmazás\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"További beszélt nyelvek\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Indítsa el az Anarlogot bejelentkezéskor\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Értesítések\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Leállítás az értekezlet végén\"],\"jzmguI\":[\"Találkozók\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nincs megfelelő nyelv\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Nyelv kiválasztása\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fő nyelv\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Nyelv hozzáadása\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"A megbeszélés kezdetekor kezdődik\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Beszélt nyelv hozzáadása\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Keresési nyelv...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Nyelv és régió\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Használati adatok megosztása\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Alkalmazás\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"További beszélt nyelvek\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Indítsa el az Anarlogot bejelentkezéskor\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Értesítések\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Leállítás az értekezlet végén\"],\"jzmguI\":[\"Találkozók\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nincs megfelelő nyelv\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Nyelv kiválasztása\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hy/messages.po b/apps/desktop/src/i18n/locales/hy/messages.po index c794b27ca6b..f2cd81c60d5 100644 --- a/apps/desktop/src/i18n/locales/hy/messages.po +++ b/apps/desktop/src/i18n/locales/hy/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hy/messages.ts b/apps/desktop/src/i18n/locales/hy/messages.ts index 563c64b5c2f..e2da9153cee 100644 --- a/apps/desktop/src/i18n/locales/hy/messages.ts +++ b/apps/desktop/src/i18n/locales/hy/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ավելացնել լեզու\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Սկսել, երբ հանդիպումը սկսվի\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ավելացնել խոսակցական լեզու\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Որոնման լեզուն...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Լեզուն և տարածաշրջանը\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Կիսեք օգտագործման տվյալները\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Հավելված\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Լրացուցիչ խոսակցական լեզուներ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Մուտք գործեք Anarlog-ը\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ծանուցումներ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Դադարեցնել, երբ հանդիպումն ավարտվի\"],\"jzmguI\":[\"Հանդիպումներ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Ընտրեք լեզուն\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ավելացնել լեզու\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Սկսել, երբ հանդիպումը սկսվի\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ավելացնել խոսակցական լեզու\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Որոնման լեզուն...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Լեզուն և տարածաշրջանը\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Կիսեք օգտագործման տվյալները\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Հավելված\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Լրացուցիչ խոսակցական լեզուներ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Մուտք գործեք Anarlog-ը\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ծանուցումներ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Դադարեցնել, երբ հանդիպումն ավարտվի\"],\"jzmguI\":[\"Հանդիպումներ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Ընտրեք լեզուն\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/id/messages.po b/apps/desktop/src/i18n/locales/id/messages.po index 47a27814e4a..c405606a419 100644 --- a/apps/desktop/src/i18n/locales/id/messages.po +++ b/apps/desktop/src/i18n/locales/id/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/id/messages.ts b/apps/desktop/src/i18n/locales/id/messages.ts index 54e60a06b3a..373eab8c5f9 100644 --- a/apps/desktop/src/i18n/locales/id/messages.ts +++ b/apps/desktop/src/i18n/locales/id/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkan bahasa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulai saat rapat dimulai\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkan bahasa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Bahasa penelusuran...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikan data penggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulai Anarlog saat login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Berhenti ketika rapat berakhir\"],\"jzmguI\":[\"Rapat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tidak ditemukan bahasa yang cocok\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih bahasa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkan bahasa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulai saat rapat dimulai\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkan bahasa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Bahasa penelusuran...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikan data penggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulai Anarlog saat login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Berhenti ketika rapat berakhir\"],\"jzmguI\":[\"Rapat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tidak ditemukan bahasa yang cocok\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Pilih bahasa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ig/messages.po b/apps/desktop/src/i18n/locales/ig/messages.po index 463a608dff8..9f17380b32c 100644 --- a/apps/desktop/src/i18n/locales/ig/messages.po +++ b/apps/desktop/src/i18n/locales/ig/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ig/messages.ts b/apps/desktop/src/i18n/locales/ig/messages.ts index 7138e97776f..55557d42a72 100644 --- a/apps/desktop/src/i18n/locales/ig/messages.ts +++ b/apps/desktop/src/i18n/locales/ig/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asụsụ isi\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tinye asụsụ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Malite mgbe nzukọ ga-amalite\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tinye asụsụ asụ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Chọọ asụsụ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Asụsụ & Mpaghara\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kekọrịta data ojiji\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ngwa\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Asụsụ ndị agbakwunyere\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bido Anarlog na nbanye\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ọkwa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Kwụsị mgbe nzukọ agwụ\"],\"jzmguI\":[\"Nzukọ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ọnweghị asụsụ dabara adaba ahụrụ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Họrọ asụsụ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asụsụ isi\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tinye asụsụ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Malite mgbe nzukọ ga-amalite\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tinye asụsụ asụ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Chọọ asụsụ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Asụsụ & Mpaghara\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kekọrịta data ojiji\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ngwa\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Asụsụ ndị agbakwunyere\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bido Anarlog na nbanye\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ọkwa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Kwụsị mgbe nzukọ agwụ\"],\"jzmguI\":[\"Nzukọ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ọnweghị asụsụ dabara adaba ahụrụ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Họrọ asụsụ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/is/messages.po b/apps/desktop/src/i18n/locales/is/messages.po index f3fe9c1cfe4..f45a47b5aab 100644 --- a/apps/desktop/src/i18n/locales/is/messages.po +++ b/apps/desktop/src/i18n/locales/is/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/is/messages.ts b/apps/desktop/src/i18n/locales/is/messages.ts index 4e355f23d31..b03d9e5e298 100644 --- a/apps/desktop/src/i18n/locales/is/messages.ts +++ b/apps/desktop/src/i18n/locales/is/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Aðaltungumál\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bæta við tungumáli\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrjaðu þegar fundur hefst\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Bæta við töluðu máli\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Leita tungumál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Tungumál og svæði\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deildu notkunargögnum\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Viðbótar töluð tungumál\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Byrjaðu Anarlog við innskráningu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Tilkynningar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Hættu þegar fundi lýkur\"],\"jzmguI\":[\"Fundir\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Engin tungumál sem passa við fundust\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Veldu tungumál\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Aðaltungumál\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bæta við tungumáli\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrjaðu þegar fundur hefst\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Bæta við töluðu máli\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Leita tungumál...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Tungumál og svæði\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Deildu notkunargögnum\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Viðbótar töluð tungumál\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Byrjaðu Anarlog við innskráningu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Tilkynningar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Hættu þegar fundi lýkur\"],\"jzmguI\":[\"Fundir\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Engin tungumál sem passa við fundust\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Veldu tungumál\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/it/messages.po b/apps/desktop/src/i18n/locales/it/messages.po index de2de473fec..fc7ce8a090d 100644 --- a/apps/desktop/src/i18n/locales/it/messages.po +++ b/apps/desktop/src/i18n/locales/it/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/it/messages.ts b/apps/desktop/src/i18n/locales/it/messages.ts index 81715c6262f..15b679c4e88 100644 --- a/apps/desktop/src/i18n/locales/it/messages.ts +++ b/apps/desktop/src/i18n/locales/it/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principale\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Aggiungi lingua\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Avvia all'inizio della riunione\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Aggiungi lingua parlata\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Cerca lingua...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingua e regione\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Condividi dati di utilizzo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingue parlate aggiuntive\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Avvia Anarlog all'accesso\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifiche\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Interrompi alla fine della riunione\"],\"jzmguI\":[\"Riunioni\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nessuna lingua corrispondente trovata\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleziona lingua\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principale\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Aggiungi lingua\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Avvia all'inizio della riunione\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Aggiungi lingua parlata\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Cerca lingua...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingua e regione\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Condividi dati di utilizzo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingue parlate aggiuntive\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Avvia Anarlog all'accesso\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifiche\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Interrompi alla fine della riunione\"],\"jzmguI\":[\"Riunioni\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nessuna lingua corrispondente trovata\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Seleziona lingua\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ja/messages.po b/apps/desktop/src/i18n/locales/ja/messages.po index f0e1b41a8a1..e29c1f3de20 100644 --- a/apps/desktop/src/i18n/locales/ja/messages.po +++ b/apps/desktop/src/i18n/locales/ja/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ja/messages.ts b/apps/desktop/src/i18n/locales/ja/messages.ts index 26b9753b2d2..6eb88044d4c 100644 --- a/apps/desktop/src/i18n/locales/ja/messages.ts +++ b/apps/desktop/src/i18n/locales/ja/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"メイン言語\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"言語を追加\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会議開始時に開始\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"音声言語を追加\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"言語を検索...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"言語と地域\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"使用状況データを共有\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"アプリ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"追加の音声言語\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ログイン時に Anarlog を起動\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"会議終了時に停止\"],\"jzmguI\":[\"会議\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"一致する言語が見つかりません\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"言語を選択\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"メイン言語\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"言語を追加\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会議開始時に開始\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"音声言語を追加\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"言語を検索...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"言語と地域\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"使用状況データを共有\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"アプリ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"追加の音声言語\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ログイン時に Anarlog を起動\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"会議終了時に停止\"],\"jzmguI\":[\"会議\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"一致する言語が見つかりません\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"言語を選択\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/jv/messages.po b/apps/desktop/src/i18n/locales/jv/messages.po index f1fc530d827..beccf98e5ca 100644 --- a/apps/desktop/src/i18n/locales/jv/messages.po +++ b/apps/desktop/src/i18n/locales/jv/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/jv/messages.ts b/apps/desktop/src/i18n/locales/jv/messages.ts index 84e34f73f27..a4c3697fbac 100644 --- a/apps/desktop/src/i18n/locales/jv/messages.ts +++ b/apps/desktop/src/i18n/locales/jv/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah basa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Miwiti nalika rapat diwiwiti\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahake basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Telusuri basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Basa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nuduhake data panggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulai Anarlog nalika mlebu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kabar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Mandheg nalika rapat rampung\"],\"jzmguI\":[\"Patemon\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ora ditemokake basa sing cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih basa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah basa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Miwiti nalika rapat diwiwiti\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahake basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Telusuri basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Basa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Nuduhake data panggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulai Anarlog nalika mlebu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Kabar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Mandheg nalika rapat rampung\"],\"jzmguI\":[\"Patemon\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ora ditemokake basa sing cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Pilih basa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ka/messages.po b/apps/desktop/src/i18n/locales/ka/messages.po index 3f36e595247..5a73194b933 100644 --- a/apps/desktop/src/i18n/locales/ka/messages.po +++ b/apps/desktop/src/i18n/locales/ka/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ka/messages.ts b/apps/desktop/src/i18n/locales/ka/messages.ts index b7fa8ea90f7..c7a7832429d 100644 --- a/apps/desktop/src/i18n/locales/ka/messages.ts +++ b/apps/desktop/src/i18n/locales/ka/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"მთავარი ენა\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ენის დამატება\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"დაიწყეთ შეხვედრის დაწყებისთანავე\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"სალაპარაკო ენის დამატება\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ენის ძიება...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ენა და რეგიონი\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"გამოყენების მონაცემების გაზიარება\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"აპი\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"დამატებითი სალაპარაკო ენები\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"დაიწყეთ Anarlog შესვლისას\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"შეტყობინებები\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"შეჩერება შეხვედრის დასრულებისას\"],\"jzmguI\":[\"შეხვედრები\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"აირჩიეთ ენა\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"მთავარი ენა\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ენის დამატება\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"დაიწყეთ შეხვედრის დაწყებისთანავე\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"სალაპარაკო ენის დამატება\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ენის ძიება...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ენა და რეგიონი\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"გამოყენების მონაცემების გაზიარება\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"აპი\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"დამატებითი სალაპარაკო ენები\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"დაიწყეთ Anarlog შესვლისას\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"შეტყობინებები\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"შეჩერება შეხვედრის დასრულებისას\"],\"jzmguI\":[\"შეხვედრები\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"აირჩიეთ ენა\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/kk/messages.po b/apps/desktop/src/i18n/locales/kk/messages.po index 84d2b9a000a..97d76a6ee2b 100644 --- a/apps/desktop/src/i18n/locales/kk/messages.po +++ b/apps/desktop/src/i18n/locales/kk/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/kk/messages.ts b/apps/desktop/src/i18n/locales/kk/messages.ts index b8d96f0bdb6..6df2857531f 100644 --- a/apps/desktop/src/i18n/locales/kk/messages.ts +++ b/apps/desktop/src/i18n/locales/kk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негізгі тіл\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тілді қосу\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Кездесу басталғанда бастаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйлеу тілін қосу\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Іздеу тілі...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тіл және аймақ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Пайдалану деректерін бөлісу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Қолданба\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Қосымша ауызекі тілдер\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Кіру кезінде Anarlog іске қосыңыз\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хабарландырулар\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Кездесу аяқталғанда тоқтатыңыз\"],\"jzmguI\":[\"Кездесулер\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Сәйкес тіл табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Тілді таңдаңыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негізгі тіл\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тілді қосу\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Кездесу басталғанда бастаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйлеу тілін қосу\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Іздеу тілі...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тіл және аймақ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Пайдалану деректерін бөлісу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Қолданба\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Қосымша ауызекі тілдер\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Кіру кезінде Anarlog іске қосыңыз\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хабарландырулар\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Кездесу аяқталғанда тоқтатыңыз\"],\"jzmguI\":[\"Кездесулер\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Сәйкес тіл табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Тілді таңдаңыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/km/messages.po b/apps/desktop/src/i18n/locales/km/messages.po index 56026d945cc..4c38aa4abfc 100644 --- a/apps/desktop/src/i18n/locales/km/messages.po +++ b/apps/desktop/src/i18n/locales/km/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/km/messages.ts b/apps/desktop/src/i18n/locales/km/messages.ts index 5f21a611a7f..6340b85626f 100644 --- a/apps/desktop/src/i18n/locales/km/messages.ts +++ b/apps/desktop/src/i18n/locales/km/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"បន្ថែមភាសា\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ចាប់ផ្តើមនៅពេលការប្រជុំចាប់ផ្តើម\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"បន្ថែមភាសានិយាយ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ភាសាស្វែងរក...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ភាសា និងតំបន់\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ចែករំលែកទិន្នន័យការប្រើប្រាស់\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"កម្មវិធី\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ភាសានិយាយបន្ថែម\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ចាប់ផ្តើម Anarlog នៅពេលចូល\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ការជូនដំណឹង\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ឈប់នៅពេលការប្រជុំបញ្ចប់\"],\"jzmguI\":[\"ការប្រជុំ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ជ្រើសរើសភាសា\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"បន្ថែមភាសា\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ចាប់ផ្តើមនៅពេលការប្រជុំចាប់ផ្តើម\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"បន្ថែមភាសានិយាយ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ភាសាស្វែងរក...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ភាសា និងតំបន់\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ចែករំលែកទិន្នន័យការប្រើប្រាស់\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"កម្មវិធី\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ភាសានិយាយបន្ថែម\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ចាប់ផ្តើម Anarlog នៅពេលចូល\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ការជូនដំណឹង\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ឈប់នៅពេលការប្រជុំបញ្ចប់\"],\"jzmguI\":[\"ការប្រជុំ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ជ្រើសរើសភាសា\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/kn/messages.po b/apps/desktop/src/i18n/locales/kn/messages.po index 4017d010397..fc5c3010829 100644 --- a/apps/desktop/src/i18n/locales/kn/messages.po +++ b/apps/desktop/src/i18n/locales/kn/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/kn/messages.ts b/apps/desktop/src/i18n/locales/kn/messages.ts index 997f5601996..e2b8622a8e6 100644 --- a/apps/desktop/src/i18n/locales/kn/messages.ts +++ b/apps/desktop/src/i18n/locales/kn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ಸಭೆ ಪ್ರಾರಂಭವಾದಾಗ ಪ್ರಾರಂಭಿಸಿ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ಮಾತನಾಡುವ ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ಹುಡುಕಾಟ ಭಾಷೆ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ಭಾಷೆ ಮತ್ತು ಪ್ರದೇಶ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ಹೆಚ್ಚುವರಿ ಮಾತನಾಡುವ ಭಾಷೆಗಳು\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ಲಾಗಿನ್‌ನಲ್ಲಿ ಅನಾರ್ಲಾಗ್ ಅನ್ನು ಪ್ರಾರಂಭಿಸಿ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ಅಧಿಸೂಚನೆಗಳು\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ಸಭೆಯು ಕೊನೆಗೊಂಡಾಗ ನಿಲ್ಲಿಸಿ\"],\"jzmguI\":[\"ಸಭೆಗಳು\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ಭಾಷೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ಸಭೆ ಪ್ರಾರಂಭವಾದಾಗ ಪ್ರಾರಂಭಿಸಿ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ಮಾತನಾಡುವ ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ಹುಡುಕಾಟ ಭಾಷೆ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ಭಾಷೆ ಮತ್ತು ಪ್ರದೇಶ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ಹೆಚ್ಚುವರಿ ಮಾತನಾಡುವ ಭಾಷೆಗಳು\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ಲಾಗಿನ್‌ನಲ್ಲಿ ಅನಾರ್ಲಾಗ್ ಅನ್ನು ಪ್ರಾರಂಭಿಸಿ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ಅಧಿಸೂಚನೆಗಳು\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ಸಭೆಯು ಕೊನೆಗೊಂಡಾಗ ನಿಲ್ಲಿಸಿ\"],\"jzmguI\":[\"ಸಭೆಗಳು\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ಭಾಷೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ko/messages.po b/apps/desktop/src/i18n/locales/ko/messages.po index 051201f08c7..03511502413 100644 --- a/apps/desktop/src/i18n/locales/ko/messages.po +++ b/apps/desktop/src/i18n/locales/ko/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ko/messages.ts b/apps/desktop/src/i18n/locales/ko/messages.ts index 588b16aa172..7f571a58a2a 100644 --- a/apps/desktop/src/i18n/locales/ko/messages.ts +++ b/apps/desktop/src/i18n/locales/ko/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"기본 언어\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"언어 추가\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"회의 시작 시 시작\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"음성 언어 추가\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"언어 검색...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"언어 및 지역\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"사용 데이터 공유\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"앱\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"추가 음성 언어\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"로그인 시 Anarlog 시작\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"알림\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"회의 종료 시 중지\"],\"jzmguI\":[\"회의\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"일치하는 언어를 찾을 수 없습니다\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"언어 선택\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"기본 언어\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"언어 추가\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"회의 시작 시 시작\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"음성 언어 추가\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"언어 검색...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"언어 및 지역\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"사용 데이터 공유\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"앱\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"추가 음성 언어\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"로그인 시 Anarlog 시작\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"알림\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"회의 종료 시 중지\"],\"jzmguI\":[\"회의\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"일치하는 언어를 찾을 수 없습니다\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"언어 선택\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ku/messages.po b/apps/desktop/src/i18n/locales/ku/messages.po index 87694280dec..7782d392274 100644 --- a/apps/desktop/src/i18n/locales/ku/messages.po +++ b/apps/desktop/src/i18n/locales/ku/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ku/messages.ts b/apps/desktop/src/i18n/locales/ku/messages.ts index 084a99c843e..b32e70efe9a 100644 --- a/apps/desktop/src/i18n/locales/ku/messages.ts +++ b/apps/desktop/src/i18n/locales/ku/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Zimanê sereke\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ziman lê zêde bike\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dema civîn dest pê dike\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Zimanê axaftinê lê zêde bike\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Zimanê gerînê...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ziman û Herêm\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Daneyên bikaranînê parve bikin\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zimanên axaftinê yên zêde\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Di têketinê de Anarlogê dest pê bike\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Agahdar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dema civîn biqede raweste\"],\"jzmguI\":[\"Hevdîtin\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Zimanên lihevhatî nehatin dîtin\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Ziman hilbijêre\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Zimanê sereke\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ziman lê zêde bike\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dema civîn dest pê dike\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Zimanê axaftinê lê zêde bike\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Zimanê gerînê...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ziman û Herêm\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Daneyên bikaranînê parve bikin\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zimanên axaftinê yên zêde\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Di têketinê de Anarlogê dest pê bike\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Agahdar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dema civîn biqede raweste\"],\"jzmguI\":[\"Hevdîtin\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Zimanên lihevhatî nehatin dîtin\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Ziman hilbijêre\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ky/messages.po b/apps/desktop/src/i18n/locales/ky/messages.po index 5e3c4d7fd9a..6d0f91d3d25 100644 --- a/apps/desktop/src/i18n/locales/ky/messages.po +++ b/apps/desktop/src/i18n/locales/ky/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ky/messages.ts b/apps/desktop/src/i18n/locales/ky/messages.ts index aa7db5518ce..ba7d1899d7a 100644 --- a/apps/desktop/src/i18n/locales/ky/messages.ts +++ b/apps/desktop/src/i18n/locales/ky/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негизги тил\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тил кошуу\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Жолугушуу башталганда баштаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Оозеки тилди кошуңуз\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Тилди издөө...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тил жана аймак\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Колдонуу дайындарын бөлүшүү\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Колдонмо\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Кошумча сүйлөө тилдери\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Кирүү учурунда Anarlogти баштаңыз\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Эскертмелер\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Жолугушуу аяктаганда токтоңуз\"],\"jzmguI\":[\"Жолугушуулар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Дал келген тилдер табылган жок\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Тилди тандаңыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негизги тил\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тил кошуу\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Жолугушуу башталганда баштаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Оозеки тилди кошуңуз\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Тилди издөө...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тил жана аймак\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Колдонуу дайындарын бөлүшүү\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Колдонмо\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Кошумча сүйлөө тилдери\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Кирүү учурунда Anarlogти баштаңыз\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Эскертмелер\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Жолугушуу аяктаганда токтоңуз\"],\"jzmguI\":[\"Жолугушуулар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Дал келген тилдер табылган жок\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Тилди тандаңыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/la/messages.po b/apps/desktop/src/i18n/locales/la/messages.po index 47fcb6c4646..78f37be7b7f 100644 --- a/apps/desktop/src/i18n/locales/la/messages.po +++ b/apps/desktop/src/i18n/locales/la/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/la/messages.ts b/apps/desktop/src/i18n/locales/la/messages.ts index 2413bd0c441..7a91e1c4c5e 100644 --- a/apps/desktop/src/i18n/locales/la/messages.ts +++ b/apps/desktop/src/i18n/locales/la/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principalis\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Linguam addere\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Committitur cum conventu incipit\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Linguam vocalem addere\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Quaerere linguam...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingua & Regio\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Phare usus data\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional linguas vocales\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Incipit Anarlog in login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificationes\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Desine cum fines conventum\"],\"jzmguI\":[\"Placitum\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non inventae linguae matching\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Linguam selectam\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingua principalis\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Linguam addere\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Committitur cum conventu incipit\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Linguam vocalem addere\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Quaerere linguam...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingua & Regio\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Phare usus data\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional linguas vocales\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Incipit Anarlog in login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificationes\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Desine cum fines conventum\"],\"jzmguI\":[\"Placitum\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Non inventae linguae matching\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Linguam selectam\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lb/messages.po b/apps/desktop/src/i18n/locales/lb/messages.po index dc264bb1c7e..b5f81377065 100644 --- a/apps/desktop/src/i18n/locales/lb/messages.po +++ b/apps/desktop/src/i18n/locales/lb/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lb/messages.ts b/apps/desktop/src/i18n/locales/lb/messages.ts index fe5b2844dd3..f1f49ecd552 100644 --- a/apps/desktop/src/i18n/locales/lb/messages.ts +++ b/apps/desktop/src/i18n/locales/lb/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Haaptsprooch\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprooch derbäi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wann d'Versammlung ufänkt\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Füügt geschwat Sprooch\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sich Sprooch...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprooch & Regioun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Verbrauchsdaten deelen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zousätzlech geschwat Sproochen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog beim Login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifikatiounen\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp wann d'Versammlung eriwwer ass\"],\"jzmguI\":[\"Versammlungen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keng passende Sprooche fonnt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sprooch auswielen\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Haaptsprooch\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprooch derbäi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wann d'Versammlung ufänkt\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Füügt geschwat Sprooch\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sich Sprooch...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Sprooch & Regioun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Verbrauchsdaten deelen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zousätzlech geschwat Sproochen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog beim Login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifikatiounen\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp wann d'Versammlung eriwwer ass\"],\"jzmguI\":[\"Versammlungen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Keng passende Sprooche fonnt\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Sprooch auswielen\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lg/messages.po b/apps/desktop/src/i18n/locales/lg/messages.po index 30e36601f5a..65c4339418d 100644 --- a/apps/desktop/src/i18n/locales/lg/messages.po +++ b/apps/desktop/src/i18n/locales/lg/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lg/messages.ts b/apps/desktop/src/i18n/locales/lg/messages.ts index bfdb9adb40a..ec1b67a86f7 100644 --- a/apps/desktop/src/i18n/locales/lg/messages.ts +++ b/apps/desktop/src/i18n/locales/lg/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Olulimi olukulu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongerako olulimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tandika ng'olukiiko lutandise\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ongerako olulimi olwogerwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Olulimi lw'okunoonya...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Olulimi & Ekitundu\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gabana data y'enkozesa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ekikozesebwa\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ennimi endala ezoogerwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tandika Anarlog ku kuyingira\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ebimanyisibwa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Komya ng'olukiiko luwedde\"],\"jzmguI\":[\"Enkiiko\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tewali nnimi zikwatagana zizuuliddwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Londa olulimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Olulimi olukulu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongerako olulimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tandika ng'olukiiko lutandise\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ongerako olulimi olwogerwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Olulimi lw'okunoonya...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Olulimi & Ekitundu\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gabana data y'enkozesa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ekikozesebwa\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ennimi endala ezoogerwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tandika Anarlog ku kuyingira\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ebimanyisibwa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Komya ng'olukiiko luwedde\"],\"jzmguI\":[\"Enkiiko\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tewali nnimi zikwatagana zizuuliddwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Londa olulimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ln/messages.po b/apps/desktop/src/i18n/locales/ln/messages.po index f221d09a8c6..f5370161c56 100644 --- a/apps/desktop/src/i18n/locales/ln/messages.po +++ b/apps/desktop/src/i18n/locales/ln/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ln/messages.ts b/apps/desktop/src/i18n/locales/ln/messages.ts index df8334c06c1..9992cdeaf9b 100644 --- a/apps/desktop/src/i18n/locales/ln/messages.ts +++ b/apps/desktop/src/i18n/locales/ln/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Monoko ya monene\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bakisa monoko\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Banda tango likita ekobanda\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Bakisa monoko oyo balobaka\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Boluka monoko...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Monoko & Etuka\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kabola ba données ya bosaleli\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Esaleli\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Minoko ya kobakisa oyo balobaka\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Banda Anarlog na bokoti\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Mayebisi\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Tika tango likita ekosila\"],\"jzmguI\":[\"Makita\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Minoko oyo ekokani ezwami te\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pona monoko\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Monoko ya monene\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bakisa monoko\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Banda tango likita ekobanda\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Bakisa monoko oyo balobaka\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Boluka monoko...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Monoko & Etuka\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kabola ba données ya bosaleli\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Esaleli\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Minoko ya kobakisa oyo balobaka\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Banda Anarlog na bokoti\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Mayebisi\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Tika tango likita ekosila\"],\"jzmguI\":[\"Makita\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Minoko oyo ekokani ezwami te\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Pona monoko\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lo/messages.po b/apps/desktop/src/i18n/locales/lo/messages.po index c8eaa3349e5..53c4dfd0127 100644 --- a/apps/desktop/src/i18n/locales/lo/messages.po +++ b/apps/desktop/src/i18n/locales/lo/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lo/messages.ts b/apps/desktop/src/i18n/locales/lo/messages.ts index faf2052a9de..dd186af18cf 100644 --- a/apps/desktop/src/i18n/locales/lo/messages.ts +++ b/apps/desktop/src/i18n/locales/lo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ເພີ່ມພາສາ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ເລີ່ມເມື່ອການປະຊຸມເລີ່ມຕົ້ນ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ເພີ່ມພາສາເວົ້າ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ພາສາຄົ້ນຫາ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ພາສາ ແລະພາກພື້ນ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ແບ່ງປັນຂໍ້ມູນການນຳໃຊ້\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ແອັບ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ພາສາເວົ້າເພີ່ມເຕີມ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ເລີ່ມ​ຕົ້ນ​ອະນາ​ລັອກ​ທີ່​ເຂົ້າ​ສູ່​ລະ​ບົບ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ການແຈ້ງເຕືອນ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ຢຸດເມື່ອການປະຊຸມຈົບລົງ\"],\"jzmguI\":[\"ການປະຊຸມ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ເລືອກພາສາ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ເພີ່ມພາສາ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ເລີ່ມເມື່ອການປະຊຸມເລີ່ມຕົ້ນ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ເພີ່ມພາສາເວົ້າ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ພາສາຄົ້ນຫາ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ພາສາ ແລະພາກພື້ນ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ແບ່ງປັນຂໍ້ມູນການນຳໃຊ້\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ແອັບ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ພາສາເວົ້າເພີ່ມເຕີມ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ເລີ່ມ​ຕົ້ນ​ອະນາ​ລັອກ​ທີ່​ເຂົ້າ​ສູ່​ລະ​ບົບ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ການແຈ້ງເຕືອນ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ຢຸດເມື່ອການປະຊຸມຈົບລົງ\"],\"jzmguI\":[\"ການປະຊຸມ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ເລືອກພາສາ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lt/messages.po b/apps/desktop/src/i18n/locales/lt/messages.po index 1c4041b47b0..8d557517072 100644 --- a/apps/desktop/src/i18n/locales/lt/messages.po +++ b/apps/desktop/src/i18n/locales/lt/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lt/messages.ts b/apps/desktop/src/i18n/locales/lt/messages.ts index b78e092fe40..1c6ab5a082d 100644 --- a/apps/desktop/src/i18n/locales/lt/messages.ts +++ b/apps/desktop/src/i18n/locales/lt/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pagrindinė kalba\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridėti kalbą\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Pradėkite susitikimo pradžioje\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pridėti šnekamąją kalbą\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Paieškos kalba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Kalba ir regionas\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bendrinti naudojimo duomenis\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Programa\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildomos šnekamosios kalbos\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Prisijungę paleiskite Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pranešimai\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Sustabdykite susitikimui pasibaigus\"],\"jzmguI\":[\"Susitikimai\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nerasta atitinkančių kalbų\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pasirinkite kalbą\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pagrindinė kalba\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridėti kalbą\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Pradėkite susitikimo pradžioje\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pridėti šnekamąją kalbą\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Paieškos kalba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Kalba ir regionas\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bendrinti naudojimo duomenis\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Programa\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildomos šnekamosios kalbos\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Prisijungę paleiskite Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pranešimai\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Sustabdykite susitikimui pasibaigus\"],\"jzmguI\":[\"Susitikimai\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nerasta atitinkančių kalbų\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Pasirinkite kalbą\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lv/messages.po b/apps/desktop/src/i18n/locales/lv/messages.po index e0d651aff78..c99f66235df 100644 --- a/apps/desktop/src/i18n/locales/lv/messages.po +++ b/apps/desktop/src/i18n/locales/lv/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lv/messages.ts b/apps/desktop/src/i18n/locales/lv/messages.ts index cce5e1f849c..269a8ce6537 100644 --- a/apps/desktop/src/i18n/locales/lv/messages.ts +++ b/apps/desktop/src/i18n/locales/lv/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Galvenā valoda\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pievienot valodu\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Sāciet, kad sākas sapulce\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pievienojiet runāto valodu\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Meklēšanas valoda...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Valoda un reģions\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kopīgojiet lietojuma datus\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Lietotne\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildu runātās valodas\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Sāciet Anarlog pie pieteikšanās\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Paziņojumi\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Pārtraukt, kad sapulce beidzas\"],\"jzmguI\":[\"Sapulces\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nav atrasta neviena atbilstoša valoda\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Atlasiet valodu\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Galvenā valoda\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pievienot valodu\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Sāciet, kad sākas sapulce\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pievienojiet runāto valodu\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Meklēšanas valoda...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Valoda un reģions\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kopīgojiet lietojuma datus\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Lietotne\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildu runātās valodas\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Sāciet Anarlog pie pieteikšanās\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Paziņojumi\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Pārtraukt, kad sapulce beidzas\"],\"jzmguI\":[\"Sapulces\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nav atrasta neviena atbilstoša valoda\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Atlasiet valodu\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mg/messages.po b/apps/desktop/src/i18n/locales/mg/messages.po index 7d3ce90634c..9175444bc76 100644 --- a/apps/desktop/src/i18n/locales/mg/messages.po +++ b/apps/desktop/src/i18n/locales/mg/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mg/messages.ts b/apps/desktop/src/i18n/locales/mg/messages.ts index a5bd707c872..f54295720e0 100644 --- a/apps/desktop/src/i18n/locales/mg/messages.ts +++ b/apps/desktop/src/i18n/locales/mg/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fiteny fototra\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ampio fiteny\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Atombohy rehefa manomboka ny fivoriana\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ampio fiteny ampiasaina\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Fiteny fikarohana...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Fiteny & Faritra\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Mizara angona fampiasana\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Fiteny ampiasaina fanampiny\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Atombohy Anarlog amin'ny fidirana\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fampandrenesana\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Atsaharo rehefa tapitra ny fivoriana\"],\"jzmguI\":[\"Fihaonana\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tsy misy fiteny mifanandrify hita\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Misafidiana fiteny\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Fiteny fototra\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ampio fiteny\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Atombohy rehefa manomboka ny fivoriana\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ampio fiteny ampiasaina\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Fiteny fikarohana...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Fiteny & Faritra\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Mizara angona fampiasana\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Fiteny ampiasaina fanampiny\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Atombohy Anarlog amin'ny fidirana\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Fampandrenesana\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Atsaharo rehefa tapitra ny fivoriana\"],\"jzmguI\":[\"Fihaonana\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tsy misy fiteny mifanandrify hita\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Misafidiana fiteny\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mi/messages.po b/apps/desktop/src/i18n/locales/mi/messages.po index 2a85d4f9454..633d525541e 100644 --- a/apps/desktop/src/i18n/locales/mi/messages.po +++ b/apps/desktop/src/i18n/locales/mi/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mi/messages.ts b/apps/desktop/src/i18n/locales/mi/messages.ts index 17854be2df9..52bc9cb5a69 100644 --- a/apps/desktop/src/i18n/locales/mi/messages.ts +++ b/apps/desktop/src/i18n/locales/mi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Te reo matua\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tāpiri reo\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Timata ina timata te hui\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Taapirihia te reo korero\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Rapu reo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Reo me te Rohe\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Tirihia nga raraunga whakamahinga\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Taupānga\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Apiti atu reo korero\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tīmata Anarlog i te takiuru\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Whakamōhiotanga\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Kati ina mutu te hui\"],\"jzmguI\":[\"Nga Hui\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Kāore he reo ōrite i kitea\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Tīpakohia te reo\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Te reo matua\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tāpiri reo\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Timata ina timata te hui\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Taapirihia te reo korero\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Rapu reo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Reo me te Rohe\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Tirihia nga raraunga whakamahinga\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Taupānga\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Apiti atu reo korero\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tīmata Anarlog i te takiuru\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Whakamōhiotanga\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Kati ina mutu te hui\"],\"jzmguI\":[\"Nga Hui\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Kāore he reo ōrite i kitea\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Tīpakohia te reo\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mk/messages.po b/apps/desktop/src/i18n/locales/mk/messages.po index 9b1a47b9697..ef56af606c3 100644 --- a/apps/desktop/src/i18n/locales/mk/messages.po +++ b/apps/desktop/src/i18n/locales/mk/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mk/messages.ts b/apps/desktop/src/i18n/locales/mk/messages.ts index dc6da638d51..cc4ddea72a6 100644 --- a/apps/desktop/src/i18n/locales/mk/messages.ts +++ b/apps/desktop/src/i18n/locales/mk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главен јазик\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте јазик\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете кога ќе започне состанокот\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорен јазик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Јазик за пребарување...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Јазик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделете податоци за користење\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апликација\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнителни говорни јазици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Започнете Anarlog при најавување\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Известувања\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Стоп кога ќе заврши состанокот\"],\"jzmguI\":[\"Средби\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не се најдени јазици што се совпаѓаат\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Изберете јазик\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главен јазик\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте јазик\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете кога ќе започне состанокот\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорен јазик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Јазик за пребарување...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Јазик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Споделете податоци за користење\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апликација\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнителни говорни јазици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Започнете Anarlog при најавување\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Известувања\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Стоп кога ќе заврши состанокот\"],\"jzmguI\":[\"Средби\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Не се најдени јазици што се совпаѓаат\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Изберете јазик\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ml/messages.po b/apps/desktop/src/i18n/locales/ml/messages.po index ec96f30ffc7..a5b4419c280 100644 --- a/apps/desktop/src/i18n/locales/ml/messages.po +++ b/apps/desktop/src/i18n/locales/ml/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ml/messages.ts b/apps/desktop/src/i18n/locales/ml/messages.ts index 777e5a08334..cb1147fdb8e 100644 --- a/apps/desktop/src/i18n/locales/ml/messages.ts +++ b/apps/desktop/src/i18n/locales/ml/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ഭാഷ ചേർക്കുക\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"മീറ്റിംഗ് ആരംഭിക്കുമ്പോൾ ആരംഭിക്കുക\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"സംസാരിക്കുന്ന ഭാഷ ചേർക്കുക\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ഭാഷ തിരയുക...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ഭാഷയും പ്രദേശവും\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ഉപയോഗ ഡാറ്റ പങ്കിടുക\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ആപ്പ്\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"കൂടുതൽ സംസാരിക്കുന്ന ഭാഷകൾ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ലോഗിൻ ചെയ്യുമ്പോൾ അനർലോഗ് ആരംഭിക്കുക\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"അറിയിപ്പുകൾ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"മീറ്റിംഗ് അവസാനിക്കുമ്പോൾ നിർത്തുക\"],\"jzmguI\":[\"മീറ്റിംഗുകൾ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ഭാഷ തിരഞ്ഞെടുക്കുക\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ഭാഷ ചേർക്കുക\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"മീറ്റിംഗ് ആരംഭിക്കുമ്പോൾ ആരംഭിക്കുക\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"സംസാരിക്കുന്ന ഭാഷ ചേർക്കുക\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ഭാഷ തിരയുക...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ഭാഷയും പ്രദേശവും\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ഉപയോഗ ഡാറ്റ പങ്കിടുക\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ആപ്പ്\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"കൂടുതൽ സംസാരിക്കുന്ന ഭാഷകൾ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ലോഗിൻ ചെയ്യുമ്പോൾ അനർലോഗ് ആരംഭിക്കുക\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"അറിയിപ്പുകൾ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"മീറ്റിംഗ് അവസാനിക്കുമ്പോൾ നിർത്തുക\"],\"jzmguI\":[\"മീറ്റിംഗുകൾ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ഭാഷ തിരഞ്ഞെടുക്കുക\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mn/messages.po b/apps/desktop/src/i18n/locales/mn/messages.po index 6afa797e3db..0f9eb066127 100644 --- a/apps/desktop/src/i18n/locales/mn/messages.po +++ b/apps/desktop/src/i18n/locales/mn/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mn/messages.ts b/apps/desktop/src/i18n/locales/mn/messages.ts index f5fadde89ea..a155e74bed4 100644 --- a/apps/desktop/src/i18n/locales/mn/messages.ts +++ b/apps/desktop/src/i18n/locales/mn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Хэл нэмэх\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Уулзалт эхлэхэд эхэл\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ярианы хэл нэмэх\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Хэл хайх...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Хэл ба бүс\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ашиглалтын өгөгдлийг хуваалцах\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програм\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Нэмэлт ярианы хэлүүд\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Нэвтрэх үед Anarlog-г эхлүүлнэ үү\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Мэдэгдэл\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Уулзалт дуусахад зогсох\"],\"jzmguI\":[\"Уулзалт\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тохирох хэл олдсонгүй\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Хэл сонгох\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Хэл нэмэх\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Уулзалт эхлэхэд эхэл\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ярианы хэл нэмэх\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Хэл хайх...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Хэл ба бүс\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ашиглалтын өгөгдлийг хуваалцах\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програм\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Нэмэлт ярианы хэлүүд\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Нэвтрэх үед Anarlog-г эхлүүлнэ үү\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Мэдэгдэл\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Уулзалт дуусахад зогсох\"],\"jzmguI\":[\"Уулзалт\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Тохирох хэл олдсонгүй\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Хэл сонгох\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mr/messages.po b/apps/desktop/src/i18n/locales/mr/messages.po index c551e5400b2..b8e2c2e32e5 100644 --- a/apps/desktop/src/i18n/locales/mr/messages.po +++ b/apps/desktop/src/i18n/locales/mr/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mr/messages.ts b/apps/desktop/src/i18n/locales/mr/messages.ts index 7844b48fd90..42de733341e 100644 --- a/apps/desktop/src/i18n/locales/mr/messages.ts +++ b/apps/desktop/src/i18n/locales/mr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोडा\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग सुरू झाल्यावर सुरू करा\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोलीची भाषा जोडा\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"भाषा शोधा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा आणि प्रदेश\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"वापर डेटा सामायिक करा\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ॲप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलल्या जाणाऱ्या भाषा\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लॉगिनवर Anarlog सुरू करा\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"मीटिंग संपल्यावर थांबा\"],\"jzmguI\":[\"मीटिंग्ज\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषा निवडा\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोडा\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग सुरू झाल्यावर सुरू करा\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोलीची भाषा जोडा\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"भाषा शोधा...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा आणि प्रदेश\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"वापर डेटा सामायिक करा\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ॲप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलल्या जाणाऱ्या भाषा\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लॉगिनवर Anarlog सुरू करा\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"मीटिंग संपल्यावर थांबा\"],\"jzmguI\":[\"मीटिंग्ज\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"भाषा निवडा\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ms/messages.po b/apps/desktop/src/i18n/locales/ms/messages.po index 8258b0dfb9a..fb124a25c5a 100644 --- a/apps/desktop/src/i18n/locales/ms/messages.po +++ b/apps/desktop/src/i18n/locales/ms/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ms/messages.ts b/apps/desktop/src/i18n/locales/ms/messages.ts index 0515d887a17..7565c525aa7 100644 --- a/apps/desktop/src/i18n/locales/ms/messages.ts +++ b/apps/desktop/src/i18n/locales/ms/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah bahasa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulakan apabila mesyuarat bermula\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkan bahasa pertuturan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Bahasa carian...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kongsi data penggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Apl\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa pertuturan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulakan Anarlog semasa log masuk\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Berhenti apabila mesyuarat tamat\"],\"jzmguI\":[\"Mesyuarat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tiada bahasa yang sepadan ditemui\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih bahasa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Bahasa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah bahasa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulakan apabila mesyuarat bermula\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkan bahasa pertuturan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Bahasa carian...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kongsi data penggunaan\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Apl\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa pertuturan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mulakan Anarlog semasa log masuk\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Berhenti apabila mesyuarat tamat\"],\"jzmguI\":[\"Mesyuarat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Tiada bahasa yang sepadan ditemui\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Pilih bahasa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mt/messages.po b/apps/desktop/src/i18n/locales/mt/messages.po index 6d9a476cdc8..f2b949bc853 100644 --- a/apps/desktop/src/i18n/locales/mt/messages.po +++ b/apps/desktop/src/i18n/locales/mt/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mt/messages.ts b/apps/desktop/src/i18n/locales/mt/messages.ts index 28f5fe2b09e..61316e0d97c 100644 --- a/apps/desktop/src/i18n/locales/mt/messages.ts +++ b/apps/desktop/src/i18n/locales/mt/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingwa prinċipali\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Żid il-lingwa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ibda meta tibda l-laqgħa\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Żid il-lingwa mitkellma\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Fittex fil-lingwa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingwa u Reġjun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Aqsam id-dejta tal-użu\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingwi mitkellma addizzjonali\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Ibda Anarlog mal-login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifiki\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ieqaf meta tintemm il-laqgħa\"],\"jzmguI\":[\"Laqgħat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"L-ebda lingwa li taqbel ma nstabet\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Agħżel il-lingwa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lingwa prinċipali\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Żid il-lingwa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ibda meta tibda l-laqgħa\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Żid il-lingwa mitkellma\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Fittex fil-lingwa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lingwa u Reġjun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Aqsam id-dejta tal-użu\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingwi mitkellma addizzjonali\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Ibda Anarlog mal-login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notifiki\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ieqaf meta tintemm il-laqgħa\"],\"jzmguI\":[\"Laqgħat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"L-ebda lingwa li taqbel ma nstabet\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Agħżel il-lingwa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/my/messages.po b/apps/desktop/src/i18n/locales/my/messages.po index ca167e5e859..a5b14d63f2e 100644 --- a/apps/desktop/src/i18n/locales/my/messages.po +++ b/apps/desktop/src/i18n/locales/my/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/my/messages.ts b/apps/desktop/src/i18n/locales/my/messages.ts index 11abf325bdb..2d704566d73 100644 --- a/apps/desktop/src/i18n/locales/my/messages.ts +++ b/apps/desktop/src/i18n/locales/my/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ဘာသာစကားထည့်ပါ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"အစည်းအဝေးစတင်သည့်အခါ စတင်ပါ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ပြောသောဘာသာစကားကို ထည့်ပါ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ရှာဖွေရန် ဘာသာစကား...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ဘာသာစကားနှင့် ဒေသ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"အသုံးပြုမှုဒေတာကို မျှဝေပါ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"အက်ပ်\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"နောက်ထပ် ပြောဆိုသော ဘာသာစကားများ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"အကောင့်ဝင်ချိန်တွင် Anarlog စတင်ပါ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"သတိပေးချက်များ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"အစည်းအဝေးပြီးဆုံးသည့်အခါ ရပ်ပါ\"],\"jzmguI\":[\"အစည်းအဝေးများ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ဘာသာစကားကို ရွေးပါ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ဘာသာစကားထည့်ပါ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"အစည်းအဝေးစတင်သည့်အခါ စတင်ပါ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ပြောသောဘာသာစကားကို ထည့်ပါ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ရှာဖွေရန် ဘာသာစကား...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ဘာသာစကားနှင့် ဒေသ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"အသုံးပြုမှုဒေတာကို မျှဝေပါ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"အက်ပ်\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"နောက်ထပ် ပြောဆိုသော ဘာသာစကားများ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"အကောင့်ဝင်ချိန်တွင် Anarlog စတင်ပါ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"သတိပေးချက်များ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"အစည်းအဝေးပြီးဆုံးသည့်အခါ ရပ်ပါ\"],\"jzmguI\":[\"အစည်းအဝေးများ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ဘာသာစကားကို ရွေးပါ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ne/messages.po b/apps/desktop/src/i18n/locales/ne/messages.po index 84ddd286172..7b43d320ac0 100644 --- a/apps/desktop/src/i18n/locales/ne/messages.po +++ b/apps/desktop/src/i18n/locales/ne/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ne/messages.ts b/apps/desktop/src/i18n/locales/ne/messages.ts index f31e8c061b2..7cd8dd9700b 100644 --- a/apps/desktop/src/i18n/locales/ne/messages.ts +++ b/apps/desktop/src/i18n/locales/ne/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा थप्नुहोस्\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"बैठक सुरु हुँदा सुरु गर्नुहोस्\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोल्ने भाषा थप्नुहोस्\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"भाषा खोज्नुहोस्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा र क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डाटा साझेदारी गर्नुहोस्\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"एप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलिने भाषाहरू\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लगइनमा Anarlog सुरु गर्नुहोस्\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचनाहरू\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"बैठक समाप्त हुँदा रोक्नुहोस्\"],\"jzmguI\":[\"बैठकहरू\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषा चयन गर्नुहोस्\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा थप्नुहोस्\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"बैठक सुरु हुँदा सुरु गर्नुहोस्\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोल्ने भाषा थप्नुहोस्\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"भाषा खोज्नुहोस्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा र क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोग डाटा साझेदारी गर्नुहोस्\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"एप\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलिने भाषाहरू\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"लगइनमा Anarlog सुरु गर्नुहोस्\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचनाहरू\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"बैठक समाप्त हुँदा रोक्नुहोस्\"],\"jzmguI\":[\"बैठकहरू\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"भाषा चयन गर्नुहोस्\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/nl/messages.po b/apps/desktop/src/i18n/locales/nl/messages.po index 8a69871fc6b..c932ba6cbe5 100644 --- a/apps/desktop/src/i18n/locales/nl/messages.po +++ b/apps/desktop/src/i18n/locales/nl/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/nl/messages.ts b/apps/desktop/src/i18n/locales/nl/messages.ts index 111a6e3bd43..f1f8dae5076 100644 --- a/apps/desktop/src/i18n/locales/nl/messages.ts +++ b/apps/desktop/src/i18n/locales/nl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hoofdtaal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Taal toevoegen\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wanneer de vergadering begint\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gesproken taal toevoegen\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Zoektaal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Taal en regio\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gebruiksgegevens delen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Extra gesproken talen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog bij inloggen\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Meldingen\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppen wanneer de vergadering eindigt\"],\"jzmguI\":[\"Vergaderingen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen overeenkomende talen gevonden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Selecteer taal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hoofdtaal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Taal toevoegen\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wanneer de vergadering begint\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gesproken taal toevoegen\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Zoektaal...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Taal en regio\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gebruiksgegevens delen\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Extra gesproken talen\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog bij inloggen\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Meldingen\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppen wanneer de vergadering eindigt\"],\"jzmguI\":[\"Vergaderingen\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Geen overeenkomende talen gevonden\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Selecteer taal\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/nn/messages.po b/apps/desktop/src/i18n/locales/nn/messages.po index e7a5ecbd0db..961befe7314 100644 --- a/apps/desktop/src/i18n/locales/nn/messages.po +++ b/apps/desktop/src/i18n/locales/nn/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/nn/messages.ts b/apps/desktop/src/i18n/locales/nn/messages.ts index 0debc4b334d..f82fba60c2a 100644 --- a/apps/desktop/src/i18n/locales/nn/messages.ts +++ b/apps/desktop/src/i18n/locales/nn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Velg språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Velg språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/no/messages.po b/apps/desktop/src/i18n/locales/no/messages.po index 3bfffec804f..0c6db250dea 100644 --- a/apps/desktop/src/i18n/locales/no/messages.po +++ b/apps/desktop/src/i18n/locales/no/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/no/messages.ts b/apps/desktop/src/i18n/locales/no/messages.ts index 0debc4b334d..f82fba60c2a 100644 --- a/apps/desktop/src/i18n/locales/no/messages.ts +++ b/apps/desktop/src/i18n/locales/no/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Velg språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Søkespråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Del bruksdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Velg språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ny/messages.po b/apps/desktop/src/i18n/locales/ny/messages.po index aecddf2f43e..251afeb6c3e 100644 --- a/apps/desktop/src/i18n/locales/ny/messages.po +++ b/apps/desktop/src/i18n/locales/ny/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ny/messages.ts b/apps/desktop/src/i18n/locales/ny/messages.ts index 999bfb475cc..b39cf5c2095 100644 --- a/apps/desktop/src/i18n/locales/ny/messages.ts +++ b/apps/desktop/src/i18n/locales/ny/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Chiyankhulo chachikulu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Onjezani chilankhulo\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Yambani msonkhano ukayamba\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Onjezani chilankhulo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sakani chilankhulo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Chinenero & Chigawo\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gawani zogwiritsa ntchito\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Mapulogalamu\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zilankhulo zina zoyankhulidwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Yambitsani Anarlog polowera\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Zidziwitso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Imani msonkhano ukatha\"],\"jzmguI\":[\"Misonkhano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Palibe zilankhulo zofananira zomwe zapezeka\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sankhani chinenero\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Chiyankhulo chachikulu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Onjezani chilankhulo\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Yambani msonkhano ukayamba\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Onjezani chilankhulo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sakani chilankhulo...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Chinenero & Chigawo\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Gawani zogwiritsa ntchito\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Mapulogalamu\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zilankhulo zina zoyankhulidwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Yambitsani Anarlog polowera\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Zidziwitso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Imani msonkhano ukatha\"],\"jzmguI\":[\"Misonkhano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Palibe zilankhulo zofananira zomwe zapezeka\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Sankhani chinenero\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/oc/messages.po b/apps/desktop/src/i18n/locales/oc/messages.po index 662d94bacd8..ff6fcfbfb40 100644 --- a/apps/desktop/src/i18n/locales/oc/messages.po +++ b/apps/desktop/src/i18n/locales/oc/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/oc/messages.ts b/apps/desktop/src/i18n/locales/oc/messages.ts index 417d0f3aa40..8cfcbb31b7e 100644 --- a/apps/desktop/src/i18n/locales/oc/messages.ts +++ b/apps/desktop/src/i18n/locales/oc/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lenga principala\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Apondre la lenga\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aviar quand la reünion comença\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Apondètz la lenga parlada\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Cercar lenga...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lenga & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partejar las donadas d'utilizacion\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicacion\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lengas parladas suplementàrias\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Aviar l'Anarlog al moment de la connexion\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"S'arrestar quand la reünion s'acaba\"],\"jzmguI\":[\"Reünions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Cap de lenga correspondenta pas trobada\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Seleccionar la lenga\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lenga principala\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Apondre la lenga\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aviar quand la reünion comença\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Apondètz la lenga parlada\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Cercar lenga...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lenga & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partejar las donadas d'utilizacion\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicacion\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lengas parladas suplementàrias\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Aviar l'Anarlog al moment de la connexion\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"S'arrestar quand la reünion s'acaba\"],\"jzmguI\":[\"Reünions\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Cap de lenga correspondenta pas trobada\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Seleccionar la lenga\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/or/messages.po b/apps/desktop/src/i18n/locales/or/messages.po index cfa908d13cc..ca415ca421e 100644 --- a/apps/desktop/src/i18n/locales/or/messages.po +++ b/apps/desktop/src/i18n/locales/or/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/or/messages.ts b/apps/desktop/src/i18n/locales/or/messages.ts index b8a512a4022..ed36838e40b 100644 --- a/apps/desktop/src/i18n/locales/or/messages.ts +++ b/apps/desktop/src/i18n/locales/or/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ଭାଷା ଯୋଡନ୍ତୁ |\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ସଭା ଆରମ୍ଭ ହେବା ପରେ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"କଥିତ ଭାଷା ଯୋଡନ୍ତୁ |\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ସନ୍ଧାନ ଭାଷା ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ଭାଷା ଏବଂ ଅଞ୍ଚଳ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ବ୍ୟବହାର ତଥ୍ୟ ଅଂଶୀଦାର କରନ୍ତୁ |\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ଆପ୍\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ଅତିରିକ୍ତ କଥିତ ଭାଷା |\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ଲଗଇନ୍ ରେ ଅନାର୍ଲଗ୍ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ବିଜ୍ଞପ୍ତିଗୁଡିକ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ସଭା ସମାପ୍ତ ହେବା ପରେ ବନ୍ଦ କର |\"],\"jzmguI\":[\"ମିଟିଂ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"କ No ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ଭାଷା ଚୟନ କରନ୍ତୁ |\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ଭାଷା ଯୋଡନ୍ତୁ |\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ସଭା ଆରମ୍ଭ ହେବା ପରେ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"କଥିତ ଭାଷା ଯୋଡନ୍ତୁ |\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ସନ୍ଧାନ ଭାଷା ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ଭାଷା ଏବଂ ଅଞ୍ଚଳ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ବ୍ୟବହାର ତଥ୍ୟ ଅଂଶୀଦାର କରନ୍ତୁ |\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ଆପ୍\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ଅତିରିକ୍ତ କଥିତ ଭାଷା |\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ଲଗଇନ୍ ରେ ଅନାର୍ଲଗ୍ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ବିଜ୍ଞପ୍ତିଗୁଡିକ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ସଭା ସମାପ୍ତ ହେବା ପରେ ବନ୍ଦ କର |\"],\"jzmguI\":[\"ମିଟିଂ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"କ No ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ଭାଷା ଚୟନ କରନ୍ତୁ |\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/pa/messages.po b/apps/desktop/src/i18n/locales/pa/messages.po index e776399e89a..733b6012dcf 100644 --- a/apps/desktop/src/i18n/locales/pa/messages.po +++ b/apps/desktop/src/i18n/locales/pa/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pa/messages.ts b/apps/desktop/src/i18n/locales/pa/messages.ts index 9048ae95b9f..0323ecf04e2 100644 --- a/apps/desktop/src/i18n/locales/pa/messages.ts +++ b/apps/desktop/src/i18n/locales/pa/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ਭਾਸ਼ਾ ਜੋੜੋ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ਮੀਟਿੰਗ ਸ਼ੁਰੂ ਹੋਣ 'ਤੇ ਸ਼ੁਰੂ ਕਰੋ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ਬੋਲੀ ਜਾਣ ਵਾਲੀ ਭਾਸ਼ਾ ਸ਼ਾਮਲ ਕਰੋ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ਭਾਸ਼ਾ ਖੋਜੋ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ਭਾਸ਼ਾ ਅਤੇ ਖੇਤਰ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ਵਰਤੋਂ ਡੇਟਾ ਸਾਂਝਾ ਕਰੋ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ਐਪ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ਵਧੀਕ ਬੋਲੀਆਂ ਜਾਣ ਵਾਲੀਆਂ ਭਾਸ਼ਾਵਾਂ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ਲੌਗਇਨ 'ਤੇ ਐਨਾਰਲੌਗ ਸ਼ੁਰੂ ਕਰੋ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ਸੂਚਨਾਵਾਂ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ਮੀਟਿੰਗ ਖਤਮ ਹੋਣ 'ਤੇ ਰੋਕੋ\"],\"jzmguI\":[\"ਮੀਟਿੰਗਾਂ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ਭਾਸ਼ਾ ਚੁਣੋ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ਭਾਸ਼ਾ ਜੋੜੋ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ਮੀਟਿੰਗ ਸ਼ੁਰੂ ਹੋਣ 'ਤੇ ਸ਼ੁਰੂ ਕਰੋ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ਬੋਲੀ ਜਾਣ ਵਾਲੀ ਭਾਸ਼ਾ ਸ਼ਾਮਲ ਕਰੋ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ਭਾਸ਼ਾ ਖੋਜੋ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ਭਾਸ਼ਾ ਅਤੇ ਖੇਤਰ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ਵਰਤੋਂ ਡੇਟਾ ਸਾਂਝਾ ਕਰੋ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ਐਪ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ਵਧੀਕ ਬੋਲੀਆਂ ਜਾਣ ਵਾਲੀਆਂ ਭਾਸ਼ਾਵਾਂ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"ਲੌਗਇਨ 'ਤੇ ਐਨਾਰਲੌਗ ਸ਼ੁਰੂ ਕਰੋ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"ਸੂਚਨਾਵਾਂ\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"ਮੀਟਿੰਗ ਖਤਮ ਹੋਣ 'ਤੇ ਰੋਕੋ\"],\"jzmguI\":[\"ਮੀਟਿੰਗਾਂ\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ਭਾਸ਼ਾ ਚੁਣੋ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/pl/messages.po b/apps/desktop/src/i18n/locales/pl/messages.po index 4922d340391..e6d88edf5e1 100644 --- a/apps/desktop/src/i18n/locales/pl/messages.po +++ b/apps/desktop/src/i18n/locales/pl/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pl/messages.ts b/apps/desktop/src/i18n/locales/pl/messages.ts index d6b67f36441..59b75543e84 100644 --- a/apps/desktop/src/i18n/locales/pl/messages.ts +++ b/apps/desktop/src/i18n/locales/pl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Język główny\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj język\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Rozpocznij w momencie rozpoczęcia spotkania\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj język mówiony\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Wyszukaj język...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Język i region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Udostępnij dane o użytkowaniu\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacja\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatkowe języki mówione\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Uruchom Anarlog przy logowaniu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Powiadomienia\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zatrzymaj po zakończeniu spotkania\"],\"jzmguI\":[\"Spotkania\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nie znaleziono pasujących języków\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Wybierz język\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Język główny\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj język\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Rozpocznij w momencie rozpoczęcia spotkania\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj język mówiony\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Wyszukaj język...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Język i region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Udostępnij dane o użytkowaniu\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacja\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatkowe języki mówione\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Uruchom Anarlog przy logowaniu\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Powiadomienia\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zatrzymaj po zakończeniu spotkania\"],\"jzmguI\":[\"Spotkania\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nie znaleziono pasujących języków\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Wybierz język\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ps/messages.po b/apps/desktop/src/i18n/locales/ps/messages.po index 23d05a5f517..e98fabdc8b9 100644 --- a/apps/desktop/src/i18n/locales/ps/messages.po +++ b/apps/desktop/src/i18n/locales/ps/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ps/messages.ts b/apps/desktop/src/i18n/locales/ps/messages.ts index c8cebe76572..0252968e657 100644 --- a/apps/desktop/src/i18n/locales/ps/messages.ts +++ b/apps/desktop/src/i18n/locales/ps/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اصلي ژبه\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ژبه اضافه کړئ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"کله چې ناسته پیل شي پیل کړئ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"د ویل شوي ژبه اضافه کړئ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"د ژبې لټون...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ژبه او سیمه\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"د کارونې ډاټا شریک کړئ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي خبرې شوي ژبې\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"په ننوتلو کې انارلوګ پیل کړئ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"کله چې ناسته پای ته ورسیږي ودروئ\"],\"jzmguI\":[\"غونډې\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ژبه وټاکئ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اصلي ژبه\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ژبه اضافه کړئ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"کله چې ناسته پیل شي پیل کړئ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"د ویل شوي ژبه اضافه کړئ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"د ژبې لټون...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ژبه او سیمه\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"د کارونې ډاټا شریک کړئ\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي خبرې شوي ژبې\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"په ننوتلو کې انارلوګ پیل کړئ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"کله چې ناسته پای ته ورسیږي ودروئ\"],\"jzmguI\":[\"غونډې\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ژبه وټاکئ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/pt/messages.po b/apps/desktop/src/i18n/locales/pt/messages.po index 234effa19d0..feeea71afea 100644 --- a/apps/desktop/src/i18n/locales/pt/messages.po +++ b/apps/desktop/src/i18n/locales/pt/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pt/messages.ts b/apps/desktop/src/i18n/locales/pt/messages.ts index 817c6c56d5a..0d361714565 100644 --- a/apps/desktop/src/i18n/locales/pt/messages.ts +++ b/apps/desktop/src/i18n/locales/pt/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adicionar idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar quando a reunião começar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Adicionar idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Pesquisar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma e região\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartilhar dados de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicativo\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog ao entrar\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Parar quando a reunião terminar\"],\"jzmguI\":[\"Reuniões\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenhum idioma correspondente encontrado\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Selecionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Idioma principal\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adicionar idioma\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar quando a reunião começar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Adicionar idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Pesquisar idioma...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Idioma e região\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Compartilhar dados de uso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicativo\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Iniciar Anarlog ao entrar\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Parar quando a reunião terminar\"],\"jzmguI\":[\"Reuniões\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenhum idioma correspondente encontrado\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Selecionar idioma\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ro/messages.po b/apps/desktop/src/i18n/locales/ro/messages.po index 75e31bb594d..43d7e425045 100644 --- a/apps/desktop/src/i18n/locales/ro/messages.po +++ b/apps/desktop/src/i18n/locales/ro/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ro/messages.ts b/apps/desktop/src/i18n/locales/ro/messages.ts index 87753219c82..e3666ecda0b 100644 --- a/apps/desktop/src/i18n/locales/ro/messages.ts +++ b/apps/desktop/src/i18n/locales/ro/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Limba principală\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adăugați limba\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Începe când începe întâlnirea\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Adăugați limba vorbită\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Căutați limba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Limbă și regiune\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partajați datele de utilizare\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicație\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Limbi vorbite suplimentare\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Porniți Anarlog la conectare\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificări\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Opriți când întâlnirea se încheie\"],\"jzmguI\":[\"Întâlniri\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nu s-au găsit limbi care se potrivesc\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Selectați limba\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Limba principală\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adăugați limba\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Începe când începe întâlnirea\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Adăugați limba vorbită\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Căutați limba...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Limbă și regiune\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Partajați datele de utilizare\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplicație\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Limbi vorbite suplimentare\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Porniți Anarlog la conectare\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Notificări\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Opriți când întâlnirea se încheie\"],\"jzmguI\":[\"Întâlniri\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nu s-au găsit limbi care se potrivesc\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Selectați limba\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ru/messages.po b/apps/desktop/src/i18n/locales/ru/messages.po index 139cfe5d407..7b33f00fdc9 100644 --- a/apps/desktop/src/i18n/locales/ru/messages.po +++ b/apps/desktop/src/i18n/locales/ru/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ru/messages.ts b/apps/desktop/src/i18n/locales/ru/messages.ts index effffa1ccc7..7f0cb59c679 100644 --- a/apps/desktop/src/i18n/locales/ru/messages.ts +++ b/apps/desktop/src/i18n/locales/ru/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основной язык\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавить язык\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Начать, когда начнется собрание\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавить разговорный язык\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Язык поиска...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Язык и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Поделиться данными об использовании\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнительные разговорные языки\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запускать Anarlog при входе в систему\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Уведомления\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Остановиться, когда встреча закончится\"],\"jzmguI\":[\"Встречи\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Подходящие языки не найдены\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Выбрать язык\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основной язык\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавить язык\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Начать, когда начнется собрание\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавить разговорный язык\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Язык поиска...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Язык и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Поделиться данными об использовании\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Приложение\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнительные разговорные языки\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запускать Anarlog при входе в систему\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Уведомления\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Остановиться, когда встреча закончится\"],\"jzmguI\":[\"Встречи\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Подходящие языки не найдены\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Выбрать язык\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sa/messages.po b/apps/desktop/src/i18n/locales/sa/messages.po index 676355ce25f..6d2aadd5a3a 100644 --- a/apps/desktop/src/i18n/locales/sa/messages.po +++ b/apps/desktop/src/i18n/locales/sa/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sa/messages.ts b/apps/desktop/src/i18n/locales/sa/messages.ts index b9898c8d076..c7093002c54 100644 --- a/apps/desktop/src/i18n/locales/sa/messages.ts +++ b/apps/desktop/src/i18n/locales/sa/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा योजयतु\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"समागमस्य आरम्भे आरभत\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"भाषितभाषा योजयतु\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"भाषां अन्वेष्टुम्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोगदत्तांशं साझां कुर्वन्तु\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्तभाष्यभाषा\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"प्रवेशसमये Anarlog आरभत\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"समागमस्य समाप्तेः समये स्थगयतु\"],\"jzmguI\":[\"समागमाः\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"न सङ्गतभाषा लभ्यते\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"भाषां चिनोतु\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा योजयतु\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"समागमस्य आरम्भे आरभत\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"भाषितभाषा योजयतु\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"भाषां अन्वेष्टुम्...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"उपयोगदत्तांशं साझां कुर्वन्तु\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्तभाष्यभाषा\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"प्रवेशसमये Anarlog आरभत\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"समागमस्य समाप्तेः समये स्थगयतु\"],\"jzmguI\":[\"समागमाः\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"न सङ्गतभाषा लभ्यते\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"भाषां चिनोतु\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sd/messages.po b/apps/desktop/src/i18n/locales/sd/messages.po index 4ab2956ec90..efbc408c511 100644 --- a/apps/desktop/src/i18n/locales/sd/messages.po +++ b/apps/desktop/src/i18n/locales/sd/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sd/messages.ts b/apps/desktop/src/i18n/locales/sd/messages.ts index 810f9e8a6ee..b1d3cb5fa0b 100644 --- a/apps/desktop/src/i18n/locales/sd/messages.ts +++ b/apps/desktop/src/i18n/locales/sd/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ٻولي شامل ڪريو\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"شروع ڪريو جڏهن ميٽنگ شروع ٿئي\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ڳالهائيندڙ ٻولي شامل ڪريو\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ٻولي ڳولھيو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ٻولي ۽ علائقو\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال ڊيٽا حصيداري ڪريو\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ايپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي ڳالهائيندڙ ٻوليون\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"لاگ ان تي Anarlog شروع ڪريو\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"جڏهن ميٽنگ ختم ٿئي ته روڪيو\"],\"jzmguI\":[\"ملاقات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"ٻولي چونڊيو\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ٻولي شامل ڪريو\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"شروع ڪريو جڏهن ميٽنگ شروع ٿئي\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ڳالهائيندڙ ٻولي شامل ڪريو\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ٻولي ڳولھيو...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ٻولي ۽ علائقو\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال ڊيٽا حصيداري ڪريو\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ايپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي ڳالهائيندڙ ٻوليون\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"لاگ ان تي Anarlog شروع ڪريو\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"جڏهن ميٽنگ ختم ٿئي ته روڪيو\"],\"jzmguI\":[\"ملاقات\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"ٻولي چونڊيو\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/si/messages.po b/apps/desktop/src/i18n/locales/si/messages.po index 75adbdcd6ef..7904f56da61 100644 --- a/apps/desktop/src/i18n/locales/si/messages.po +++ b/apps/desktop/src/i18n/locales/si/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/si/messages.ts b/apps/desktop/src/i18n/locales/si/messages.ts index ed5bcf7e098..942800874de 100644 --- a/apps/desktop/src/i18n/locales/si/messages.ts +++ b/apps/desktop/src/i18n/locales/si/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"භාෂාව එක් කරන්න\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"රැස්වීම ආරම්භ වන විට ආරම්භ කරන්න\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"කථන භාෂාව එක් කරන්න\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"සෙවුම් භාෂාව...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"භාෂාව සහ කලාපය\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"භාවිතා දත්ත බෙදා ගන්න\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"යෙදුම\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"අමතර කථන භාෂා\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"පිවිසීමේදී Anarlog ආරම්භ කරන්න\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"දැනුම්දීම්\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"රැස්වීම අවසන් වූ විට නවත්වන්න\"],\"jzmguI\":[\"රැස්වීම්\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"භාෂාව තෝරන්න\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"භාෂාව එක් කරන්න\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"රැස්වීම ආරම්භ වන විට ආරම්භ කරන්න\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"කථන භාෂාව එක් කරන්න\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"සෙවුම් භාෂාව...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"භාෂාව සහ කලාපය\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"භාවිතා දත්ත බෙදා ගන්න\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"යෙදුම\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"අමතර කථන භාෂා\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"පිවිසීමේදී Anarlog ආරම්භ කරන්න\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"දැනුම්දීම්\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"රැස්වීම අවසන් වූ විට නවත්වන්න\"],\"jzmguI\":[\"රැස්වීම්\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"භාෂාව තෝරන්න\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sk/messages.po b/apps/desktop/src/i18n/locales/sk/messages.po index 267227b9e67..39defa29262 100644 --- a/apps/desktop/src/i18n/locales/sk/messages.po +++ b/apps/desktop/src/i18n/locales/sk/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sk/messages.ts b/apps/desktop/src/i18n/locales/sk/messages.ts index 25798ff0c5b..81f81af32f1 100644 --- a/apps/desktop/src/i18n/locales/sk/messages.ts +++ b/apps/desktop/src/i18n/locales/sk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavný jazyk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridať jazyk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začať, keď sa schôdza začína\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pridať hovorený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Jazyk vyhľadávania...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jazyk a oblasť\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Zdieľať údaje o používaní\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikácia\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ďalšie hovorené jazyky\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Spustite Anarlog pri prihlásení\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Upozornenia\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zastavte, keď sa stretnutie skončí\"],\"jzmguI\":[\"Stretnutia\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenašli sa žiadne zodpovedajúce jazyky\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hlavný jazyk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridať jazyk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začať, keď sa schôdza začína\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Pridať hovorený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Jazyk vyhľadávania...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jazyk a oblasť\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Zdieľať údaje o používaní\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikácia\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ďalšie hovorené jazyky\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Spustite Anarlog pri prihlásení\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Upozornenia\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Zastavte, keď sa stretnutie skončí\"],\"jzmguI\":[\"Stretnutia\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nenašli sa žiadne zodpovedajúce jazyky\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sl/messages.po b/apps/desktop/src/i18n/locales/sl/messages.po index 719a6c20fa8..7c2d4092f42 100644 --- a/apps/desktop/src/i18n/locales/sl/messages.po +++ b/apps/desktop/src/i18n/locales/sl/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sl/messages.ts b/apps/desktop/src/i18n/locales/sl/messages.ts index 0deacd0c01a..50b7b4266e4 100644 --- a/apps/desktop/src/i18n/locales/sl/messages.ts +++ b/apps/desktop/src/i18n/locales/sl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začni, ko se sestanek začne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorjeni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Jezik iskanja ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik in regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Skupna raba podatkov o uporabi\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorjeni jeziki\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Zaženi Anarlog ob prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obvestila\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ustavite se, ko se sestanek konča\"],\"jzmguI\":[\"Sestanki\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni ustreznih jezikov\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Izberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Glavni jezik\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začni, ko se sestanek začne\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Dodaj govorjeni jezik\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Jezik iskanja ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Jezik in regija\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Skupna raba podatkov o uporabi\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacija\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorjeni jeziki\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Zaženi Anarlog ob prijavi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Obvestila\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ustavite se, ko se sestanek konča\"],\"jzmguI\":[\"Sestanki\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ni ustreznih jezikov\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Izberite jezik\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sn/messages.po b/apps/desktop/src/i18n/locales/sn/messages.po index c8c1d955f6f..52725566c1c 100644 --- a/apps/desktop/src/i18n/locales/sn/messages.po +++ b/apps/desktop/src/i18n/locales/sn/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sn/messages.ts b/apps/desktop/src/i18n/locales/sn/messages.ts index 578634ee468..0e7cf212b51 100644 --- a/apps/desktop/src/i18n/locales/sn/messages.ts +++ b/apps/desktop/src/i18n/locales/sn/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Mutauro mukuru\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Wedzera mutauro\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tanga kana musangano watanga\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Wedzera mutauro unotaurwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Tsvaga mutauro...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Mutauro & Nharaunda\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Goverana data rekushandisa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mitauro inowedzerwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tanga Anarlog paunopinda\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Zviziviso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Mira kana musangano wapera\"],\"jzmguI\":[\"Misangano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hapana mitauro inoenderana yawanikwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Sarudza mutauro\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Mutauro mukuru\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Wedzera mutauro\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tanga kana musangano watanga\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Wedzera mutauro unotaurwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Tsvaga mutauro...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Mutauro & Nharaunda\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Goverana data rekushandisa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mitauro inowedzerwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tanga Anarlog paunopinda\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Zviziviso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Mira kana musangano wapera\"],\"jzmguI\":[\"Misangano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hapana mitauro inoenderana yawanikwa\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Sarudza mutauro\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/so/messages.po b/apps/desktop/src/i18n/locales/so/messages.po index fd2480980e5..87aa8d946a3 100644 --- a/apps/desktop/src/i18n/locales/so/messages.po +++ b/apps/desktop/src/i18n/locales/so/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/so/messages.ts b/apps/desktop/src/i18n/locales/so/messages.ts index b796283fa68..d152a284797 100644 --- a/apps/desktop/src/i18n/locales/so/messages.ts +++ b/apps/desktop/src/i18n/locales/so/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Luqadda ugu weyn\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Kudar luqadda\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bilow marka kulanku bilaabmo\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ku dar luqadda lagu hadlo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Luqadda raadi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Luqadda & Gobolka\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"La wadaag xogta isticmaalka\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App-ka\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Afafka lagu hadlo dheeraadka ah\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bilow Anarlog marka la soo galo\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ogaysiisyo\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Jooji marka kulanku dhamaado\"],\"jzmguI\":[\"Kulamada\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Lama helin luuqado u dhigma\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dooro luqadda\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Luqadda ugu weyn\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Kudar luqadda\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bilow marka kulanku bilaabmo\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ku dar luqadda lagu hadlo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Luqadda raadi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Luqadda & Gobolka\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"La wadaag xogta isticmaalka\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App-ka\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Afafka lagu hadlo dheeraadka ah\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bilow Anarlog marka la soo galo\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Ogaysiisyo\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Jooji marka kulanku dhamaado\"],\"jzmguI\":[\"Kulamada\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Lama helin luuqado u dhigma\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Dooro luqadda\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sq/messages.po b/apps/desktop/src/i18n/locales/sq/messages.po index b7cd7859342..0d6e6e7aac9 100644 --- a/apps/desktop/src/i18n/locales/sq/messages.po +++ b/apps/desktop/src/i18n/locales/sq/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sq/messages.ts b/apps/desktop/src/i18n/locales/sq/messages.ts index 5fafa1d43ea..f67c4686674 100644 --- a/apps/desktop/src/i18n/locales/sq/messages.ts +++ b/apps/desktop/src/i18n/locales/sq/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Gjuha kryesore\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Shto gjuhën\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fillo kur të fillojë takimi\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Shto gjuhën e folur\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Kërko gjuhën...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Gjuha dhe rajoni\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ndani të dhënat e përdorimit\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacioni\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Gjuhë të tjera të folura\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Filloni Anarlog në hyrje\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Njoftimet\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ndalo kur të përfundojë takimi\"],\"jzmguI\":[\"Takime\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nuk u gjet asnjë gjuhë që përputhet\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Zgjidh gjuhën\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Gjuha kryesore\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Shto gjuhën\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fillo kur të fillojë takimi\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Shto gjuhën e folur\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Kërko gjuhën...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Gjuha dhe rajoni\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ndani të dhënat e përdorimit\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikacioni\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Gjuhë të tjera të folura\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Filloni Anarlog në hyrje\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Njoftimet\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ndalo kur të përfundojë takimi\"],\"jzmguI\":[\"Takime\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Nuk u gjet asnjë gjuhë që përputhet\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Zgjidh gjuhën\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sr/messages.po b/apps/desktop/src/i18n/locales/sr/messages.po index 53163a181fc..457fb11735f 100644 --- a/apps/desktop/src/i18n/locales/sr/messages.po +++ b/apps/desktop/src/i18n/locales/sr/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sr/messages.ts b/apps/desktop/src/i18n/locales/sr/messages.ts index 6b322ea0f0d..dcc5b1bad82 100644 --- a/apps/desktop/src/i18n/locales/sr/messages.ts +++ b/apps/desktop/src/i18n/locales/sr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главни језик\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте језик\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почните када састанак почне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорни језик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Претражи језик...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Језик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Делите податке о коришћењу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апп\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додатни говорни језици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Покрените Анарлог приликом пријављивања\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Обавештења\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Зауставите се када се састанак заврши\"],\"jzmguI\":[\"Састанци\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Није пронађен ниједан одговарајући језик\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Изаберите језик\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главни језик\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте језик\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почните када састанак почне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорни језик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Претражи језик...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Језик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Делите податке о коришћењу\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Апп\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додатни говорни језици\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Покрените Анарлог приликом пријављивања\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Обавештења\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Зауставите се када се састанак заврши\"],\"jzmguI\":[\"Састанци\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Није пронађен ниједан одговарајући језик\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Изаберите језик\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/su/messages.po b/apps/desktop/src/i18n/locales/su/messages.po index 2c4cc73afa6..0c3f5be8573 100644 --- a/apps/desktop/src/i18n/locales/su/messages.po +++ b/apps/desktop/src/i18n/locales/su/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/su/messages.ts b/apps/desktop/src/i18n/locales/su/messages.ts index d44db4221b6..f8a22d4855d 100644 --- a/apps/desktop/src/i18n/locales/su/messages.ts +++ b/apps/desktop/src/i18n/locales/su/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkeun basa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mimitian nalika rapat dimimitian\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkeun basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Teangan basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Basa & Wewengkon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikeun data pamakean\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mimitian Anarlog nalika asup\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bewara\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Eureun nalika rapat réngsé\"],\"jzmguI\":[\"Rapat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Teu kapanggih basa nu cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pilih basa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Basa utama\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkeun basa\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mimitian nalika rapat dimimitian\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Tambahkeun basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Teangan basa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Basa & Wewengkon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Bagikeun data pamakean\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Aplikasi\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Mimitian Anarlog nalika asup\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bewara\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Eureun nalika rapat réngsé\"],\"jzmguI\":[\"Rapat\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Teu kapanggih basa nu cocog\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Pilih basa\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sv/messages.po b/apps/desktop/src/i18n/locales/sv/messages.po index 78a4fbbd937..e8c2deeb853 100644 --- a/apps/desktop/src/i18n/locales/sv/messages.po +++ b/apps/desktop/src/i18n/locales/sv/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sv/messages.ts b/apps/desktop/src/i18n/locales/sv/messages.ts index 2b30a174cb3..7115af224fe 100644 --- a/apps/desktop/src/i18n/locales/sv/messages.ts +++ b/apps/desktop/src/i18n/locales/sv/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Huvudspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lägg till språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Börja när mötet börjar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lägg till talat språk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sökspråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk och region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dela användningsdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ytterligare talade språk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Starta Anarlog vid inloggning\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Aviseringar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppa när mötet slutar\"],\"jzmguI\":[\"Möten\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Inga matchande språk hittades\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Välj språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Huvudspråk\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lägg till språk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Börja när mötet börjar\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Lägg till talat språk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sökspråk...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Språk och region\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Dela användningsdata\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ytterligare talade språk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Starta Anarlog vid inloggning\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Aviseringar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Stoppa när mötet slutar\"],\"jzmguI\":[\"Möten\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Inga matchande språk hittades\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Välj språk\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sw/messages.po b/apps/desktop/src/i18n/locales/sw/messages.po index d7a1ea47c85..04f7b8cba44 100644 --- a/apps/desktop/src/i18n/locales/sw/messages.po +++ b/apps/desktop/src/i18n/locales/sw/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sw/messages.ts b/apps/desktop/src/i18n/locales/sw/messages.ts index 8e06b022832..ed638fb71e2 100644 --- a/apps/desktop/src/i18n/locales/sw/messages.ts +++ b/apps/desktop/src/i18n/locales/sw/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lugha kuu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongeza lugha\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Anza mkutano unapoanza\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ongeza lugha inayozungumzwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Tafuta lugha...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lugha na Eneo\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Shiriki data ya matumizi\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Programu\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lugha za ziada zinazozungumzwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anzisha Anarlog wakati wa kuingia\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Arifa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Simama mkutano unapoisha\"],\"jzmguI\":[\"Mikutano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hakuna lugha zinazolingana zilizopatikana\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Chagua lugha\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Lugha kuu\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongeza lugha\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Anza mkutano unapoanza\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ongeza lugha inayozungumzwa\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Tafuta lugha...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Lugha na Eneo\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Shiriki data ya matumizi\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Programu\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lugha za ziada zinazozungumzwa\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anzisha Anarlog wakati wa kuingia\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Arifa\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Simama mkutano unapoisha\"],\"jzmguI\":[\"Mikutano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Hakuna lugha zinazolingana zilizopatikana\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Chagua lugha\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ta/messages.po b/apps/desktop/src/i18n/locales/ta/messages.po index a747af2b895..e463340137e 100644 --- a/apps/desktop/src/i18n/locales/ta/messages.po +++ b/apps/desktop/src/i18n/locales/ta/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ta/messages.ts b/apps/desktop/src/i18n/locales/ta/messages.ts index fdd3ee3e185..7a24777a7b6 100644 --- a/apps/desktop/src/i18n/locales/ta/messages.ts +++ b/apps/desktop/src/i18n/locales/ta/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"மொழியைச் சேர்\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"மீட்டிங் தொடங்கும் போது தொடங்கவும்\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"பேசும் மொழியைச் சேர்\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"தேடல் மொழி...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"மொழி & பகுதி\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"பயன்பாட்டுத் தரவைப் பகிரவும்\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"பயன்பாடு\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"கூடுதல் பேசும் மொழிகள்\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"உள்நுழைவில் Anarlog ஐத் தொடங்கவும்\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"அறிவிப்புகள்\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"சந்திப்பு முடிந்ததும் நிறுத்து\"],\"jzmguI\":[\"கூட்டங்கள்\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"மொழியைத் தேர்ந்தெடு\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"மொழியைச் சேர்\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"மீட்டிங் தொடங்கும் போது தொடங்கவும்\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"பேசும் மொழியைச் சேர்\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"தேடல் மொழி...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"மொழி & பகுதி\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"பயன்பாட்டுத் தரவைப் பகிரவும்\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"பயன்பாடு\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"கூடுதல் பேசும் மொழிகள்\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"உள்நுழைவில் Anarlog ஐத் தொடங்கவும்\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"அறிவிப்புகள்\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"சந்திப்பு முடிந்ததும் நிறுத்து\"],\"jzmguI\":[\"கூட்டங்கள்\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"மொழியைத் தேர்ந்தெடு\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/te/messages.po b/apps/desktop/src/i18n/locales/te/messages.po index 1dda342daa8..baddf11c881 100644 --- a/apps/desktop/src/i18n/locales/te/messages.po +++ b/apps/desktop/src/i18n/locales/te/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/te/messages.ts b/apps/desktop/src/i18n/locales/te/messages.ts index a5bdbcd893e..ce9525a5cab 100644 --- a/apps/desktop/src/i18n/locales/te/messages.ts +++ b/apps/desktop/src/i18n/locales/te/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"భాషను జోడించు\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"సమావేశం ప్రారంభమైనప్పుడు ప్రారంభించండి\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"మాట్లాడే భాషను జోడించు\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"భాషను శోధించండి...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"భాష & ప్రాంతం\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"వినియోగ డేటాను భాగస్వామ్యం చేయండి\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"యాప్\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"అదనపు మాట్లాడే భాషలు\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"లాగిన్ వద్ద Anarlogని ప్రారంభించండి\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"నోటిఫికేషన్‌లు\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"సమావేశం ముగిసినప్పుడు ఆపివేయండి\"],\"jzmguI\":[\"సమావేశాలు\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"భాషను ఎంచుకోండి\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"భాషను జోడించు\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"సమావేశం ప్రారంభమైనప్పుడు ప్రారంభించండి\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"మాట్లాడే భాషను జోడించు\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"భాషను శోధించండి...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"భాష & ప్రాంతం\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"వినియోగ డేటాను భాగస్వామ్యం చేయండి\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"యాప్\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"అదనపు మాట్లాడే భాషలు\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"లాగిన్ వద్ద Anarlogని ప్రారంభించండి\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"నోటిఫికేషన్‌లు\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"సమావేశం ముగిసినప్పుడు ఆపివేయండి\"],\"jzmguI\":[\"సమావేశాలు\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"భాషను ఎంచుకోండి\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tg/messages.po b/apps/desktop/src/i18n/locales/tg/messages.po index 5bdbc28a438..dd30031c4ec 100644 --- a/apps/desktop/src/i18n/locales/tg/messages.po +++ b/apps/desktop/src/i18n/locales/tg/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tg/messages.ts b/apps/desktop/src/i18n/locales/tg/messages.ts index 5e9c5c2adbb..6a341e3b56c 100644 --- a/apps/desktop/src/i18n/locales/tg/messages.ts +++ b/apps/desktop/src/i18n/locales/tg/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Забони асосӣ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Иловаи забон\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Вақте ки вохӯрӣ оғоз мешавад, оғоз кунед\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Забони гуфтугӯиро илова кунед\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Забони ҷустуҷӯ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Забон ва минтақа\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Мубодилаи маълумоти истифода\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Барнома\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Забонҳои иловагии гуфтугӯӣ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Дар ворид шудан ба Anarlog оғоз кунед\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Огоҳиҳо\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ҳангоми ба охир расидани вохӯрӣ қатъ кунед\"],\"jzmguI\":[\"Вохангҳо\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Забонро интихоб кунед\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Забони асосӣ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Иловаи забон\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Вақте ки вохӯрӣ оғоз мешавад, оғоз кунед\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Забони гуфтугӯиро илова кунед\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Забони ҷустуҷӯ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Забон ва минтақа\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Мубодилаи маълумоти истифода\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Барнома\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Забонҳои иловагии гуфтугӯӣ\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Дар ворид шудан ба Anarlog оғоз кунед\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Огоҳиҳо\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ҳангоми ба охир расидани вохӯрӣ қатъ кунед\"],\"jzmguI\":[\"Вохангҳо\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Забонро интихоб кунед\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/th/messages.po b/apps/desktop/src/i18n/locales/th/messages.po index 477ed26e8a5..a41f4c1ee74 100644 --- a/apps/desktop/src/i18n/locales/th/messages.po +++ b/apps/desktop/src/i18n/locales/th/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/th/messages.ts b/apps/desktop/src/i18n/locales/th/messages.ts index 1540004825f..4e6fc2b38e9 100644 --- a/apps/desktop/src/i18n/locales/th/messages.ts +++ b/apps/desktop/src/i18n/locales/th/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"เพิ่มภาษา\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"เริ่มเมื่อการประชุมเริ่มต้นขึ้น\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"เพิ่มภาษาพูด\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"ภาษาการค้นหา...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ภาษาและภูมิภาค\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"แชร์ข้อมูลการใช้งาน\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"แอป\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ภาษาพูดเพิ่มเติม\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"เริ่ม Anarlog เมื่อเข้าสู่ระบบ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"การแจ้งเตือน\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"หยุดเมื่อการประชุมสิ้นสุดลง\"],\"jzmguI\":[\"การประชุม\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ไม่พบภาษาที่ตรงกัน\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"เลือกภาษา\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"เพิ่มภาษา\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"เริ่มเมื่อการประชุมเริ่มต้นขึ้น\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"เพิ่มภาษาพูด\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"ภาษาการค้นหา...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"ภาษาและภูมิภาค\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"แชร์ข้อมูลการใช้งาน\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"แอป\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ภาษาพูดเพิ่มเติม\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"เริ่ม Anarlog เมื่อเข้าสู่ระบบ\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"การแจ้งเตือน\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"หยุดเมื่อการประชุมสิ้นสุดลง\"],\"jzmguI\":[\"การประชุม\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"ไม่พบภาษาที่ตรงกัน\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"เลือกภาษา\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tk/messages.po b/apps/desktop/src/i18n/locales/tk/messages.po index 54fb8a45113..92a77e04064 100644 --- a/apps/desktop/src/i18n/locales/tk/messages.po +++ b/apps/desktop/src/i18n/locales/tk/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tk/messages.ts b/apps/desktop/src/i18n/locales/tk/messages.ts index 3a3f0b9f0d6..56a110c5eec 100644 --- a/apps/desktop/src/i18n/locales/tk/messages.ts +++ b/apps/desktop/src/i18n/locales/tk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Esasy dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil goşuň\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Duşuşyk başlanda başlaň\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gepleşik dilini goşuň\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Gözleg dili ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil we sebit\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ulanyş maglumatlaryny paýlaşyň\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"programma\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Goşmaça gürleýän diller\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlogy girişden başlaň\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Duýduryşlar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Duşuşyk gutaranda duruň\"],\"jzmguI\":[\"Duşuşyklar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gabat gelýän diller tapylmady\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dil saýlaň\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Esasy dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil goşuň\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Duşuşyk başlanda başlaň\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Gepleşik dilini goşuň\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Gözleg dili ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil we sebit\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ulanyş maglumatlaryny paýlaşyň\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"programma\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Goşmaça gürleýän diller\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Anarlogy girişden başlaň\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Duýduryşlar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Duşuşyk gutaranda duruň\"],\"jzmguI\":[\"Duşuşyklar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gabat gelýän diller tapylmady\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Dil saýlaň\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tl/messages.po b/apps/desktop/src/i18n/locales/tl/messages.po index d63047d58b0..dfdf1c5a32e 100644 --- a/apps/desktop/src/i18n/locales/tl/messages.po +++ b/apps/desktop/src/i18n/locales/tl/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tl/messages.ts b/apps/desktop/src/i18n/locales/tl/messages.ts index 59b77b08dcb..7a606902252 100644 --- a/apps/desktop/src/i18n/locales/tl/messages.ts +++ b/apps/desktop/src/i18n/locales/tl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pangunahing wika\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Magdagdag ng wika\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Magsimula kapag nagsimula ang pulong\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Magdagdag ng sinasalitang wika\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Wika sa paghahanap...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Wika at Rehiyon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ibahagi ang data ng paggamit\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mga karagdagang sinasalitang wika\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Simulan ang Anarlog sa pag-login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Mga Notification\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ihinto kapag natapos na ang pulong\"],\"jzmguI\":[\"Mga Pagpupulong\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Walang nakitang katugmang mga wika\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Pumili ng wika\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Pangunahing wika\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Magdagdag ng wika\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Magsimula kapag nagsimula ang pulong\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Magdagdag ng sinasalitang wika\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Wika sa paghahanap...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Wika at Rehiyon\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Ibahagi ang data ng paggamit\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"App\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mga karagdagang sinasalitang wika\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Simulan ang Anarlog sa pag-login\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Mga Notification\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Ihinto kapag natapos na ang pulong\"],\"jzmguI\":[\"Mga Pagpupulong\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Walang nakitang katugmang mga wika\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Pumili ng wika\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tr/messages.po b/apps/desktop/src/i18n/locales/tr/messages.po index b099717474e..54c2f1f4f2e 100644 --- a/apps/desktop/src/i18n/locales/tr/messages.po +++ b/apps/desktop/src/i18n/locales/tr/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tr/messages.ts b/apps/desktop/src/i18n/locales/tr/messages.ts index 6b40870250e..7bb953b3600 100644 --- a/apps/desktop/src/i18n/locales/tr/messages.ts +++ b/apps/desktop/src/i18n/locales/tr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ana dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil ekle\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Toplantı başladığında başla\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Konuşulan dili ekle\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Dil ara...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil ve Bölge\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kullanım verilerini paylaşın\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Uygulama\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ek konuşulan diller\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Giriş sırasında Anarlog'u başlatın\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirimler\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Toplantı sona erdiğinde dur\"],\"jzmguI\":[\"Toplantılar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Eşleşen dil bulunamadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Dil seçin\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ana dil\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil ekle\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Toplantı başladığında başla\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Konuşulan dili ekle\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Dil ara...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Dil ve Bölge\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Kullanım verilerini paylaşın\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Uygulama\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ek konuşulan diller\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Giriş sırasında Anarlog'u başlatın\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirimler\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Toplantı sona erdiğinde dur\"],\"jzmguI\":[\"Toplantılar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Eşleşen dil bulunamadı\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Dil seçin\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tt/messages.po b/apps/desktop/src/i18n/locales/tt/messages.po index d5828aec613..304b12ba22f 100644 --- a/apps/desktop/src/i18n/locales/tt/messages.po +++ b/apps/desktop/src/i18n/locales/tt/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tt/messages.ts b/apps/desktop/src/i18n/locales/tt/messages.ts index 342b74be5e9..73404d7ef83 100644 --- a/apps/desktop/src/i18n/locales/tt/messages.ts +++ b/apps/desktop/src/i18n/locales/tt/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өстәгез\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Очрашу башлангач башлагыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйләм телен өстәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Эзләү теле ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тел һәм Төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Куллану мәгълүматларын бүлешү\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"кушымта\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өстәмә сөйләм телләре\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Анарлогны логинда башлау\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хәбәрләр\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Очрашу беткәч туктагыз\"],\"jzmguI\":[\"Очрашулар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Телне сайлагыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өстәгез\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Очрашу башлангач башлагыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйләм телен өстәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Эзләү теле ...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Тел һәм Төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Куллану мәгълүматларын бүлешү\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"кушымта\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өстәмә сөйләм телләре\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Анарлогны логинда башлау\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Хәбәрләр\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Очрашу беткәч туктагыз\"],\"jzmguI\":[\"Очрашулар\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Телне сайлагыз\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/uk/messages.po b/apps/desktop/src/i18n/locales/uk/messages.po index 85f5d3f6e58..77d7a6f4d88 100644 --- a/apps/desktop/src/i18n/locales/uk/messages.po +++ b/apps/desktop/src/i18n/locales/uk/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/uk/messages.ts b/apps/desktop/src/i18n/locales/uk/messages.ts index b693615ec16..0d3d24b29e9 100644 --- a/apps/desktop/src/i18n/locales/uk/messages.ts +++ b/apps/desktop/src/i18n/locales/uk/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основна мова\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додати мову\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почати під час зустрічі\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додати розмовну мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Мова та регіон\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Обмін даними про використання\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програма\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додаткові розмовні мови\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запускати Anarlog під час входу\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Сповіщення\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Зупинити, коли зустріч закінчиться\"],\"jzmguI\":[\"Зустрічі\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Відповідних мов не знайдено\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Виберіть мову\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основна мова\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додати мову\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почати під час зустрічі\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додати розмовну мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Мова пошуку...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Мова та регіон\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Обмін даними про використання\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Програма\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додаткові розмовні мови\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Запускати Anarlog під час входу\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Сповіщення\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Зупинити, коли зустріч закінчиться\"],\"jzmguI\":[\"Зустрічі\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Відповідних мов не знайдено\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Виберіть мову\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ur/messages.po b/apps/desktop/src/i18n/locales/ur/messages.po index 52fde7cb95e..1037b503555 100644 --- a/apps/desktop/src/i18n/locales/ur/messages.po +++ b/apps/desktop/src/i18n/locales/ur/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ur/messages.ts b/apps/desktop/src/i18n/locales/ur/messages.ts index 5b6914a62ff..366903b31de 100644 --- a/apps/desktop/src/i18n/locales/ur/messages.ts +++ b/apps/desktop/src/i18n/locales/ur/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مرکزی زبان\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"زبان شامل کریں\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"میٹنگ شروع ہونے پر شروع کریں\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"بولی جانے والی زبان شامل کریں\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"تلاش زبان...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"زبان اور علاقہ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال کا ڈیٹا شیئر کریں\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافی بولی جانے والی زبانیں\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"لاگ ان پر Anarlog شروع کریں\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"میٹنگ ختم ہونے پر رکیں\"],\"jzmguI\":[\"میٹنگز\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"زبان منتخب کریں\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مرکزی زبان\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"زبان شامل کریں\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"میٹنگ شروع ہونے پر شروع کریں\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"بولی جانے والی زبان شامل کریں\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"تلاش زبان...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"زبان اور علاقہ\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"استعمال کا ڈیٹا شیئر کریں\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"ایپ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافی بولی جانے والی زبانیں\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"لاگ ان پر Anarlog شروع کریں\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"میٹنگ ختم ہونے پر رکیں\"],\"jzmguI\":[\"میٹنگز\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"زبان منتخب کریں\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/uz/messages.po b/apps/desktop/src/i18n/locales/uz/messages.po index ab64e2a696b..a6179c86b8b 100644 --- a/apps/desktop/src/i18n/locales/uz/messages.po +++ b/apps/desktop/src/i18n/locales/uz/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/uz/messages.ts b/apps/desktop/src/i18n/locales/uz/messages.ts index a1d25a1320d..4208d790e48 100644 --- a/apps/desktop/src/i18n/locales/uz/messages.ts +++ b/apps/desktop/src/i18n/locales/uz/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asosiy til\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Til qo'shish\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Uchrashuv boshlanganda boshlang\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Og'zaki til qo'shing\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Tilni qidirish...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Til va mintaqa\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Foydalanish ma'lumotlarini baham ko'rish\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ilova\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Qo'shimcha og'zaki tillar\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kirish vaqtida Anarlogni ishga tushiring\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirishnomalar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Uchrashuv tugashi bilan toʻxtating\"],\"jzmguI\":[\"Uchrashuvlar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Mos tillar topilmadi\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Tilni tanlang\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Asosiy til\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Til qo'shish\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Uchrashuv boshlanganda boshlang\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Og'zaki til qo'shing\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Tilni qidirish...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Til va mintaqa\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Foydalanish ma'lumotlarini baham ko'rish\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ilova\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Qo'shimcha og'zaki tillar\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Kirish vaqtida Anarlogni ishga tushiring\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Bildirishnomalar\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Uchrashuv tugashi bilan toʻxtating\"],\"jzmguI\":[\"Uchrashuvlar\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Mos tillar topilmadi\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Tilni tanlang\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/vi/messages.po b/apps/desktop/src/i18n/locales/vi/messages.po index 48014b74b90..579e0763611 100644 --- a/apps/desktop/src/i18n/locales/vi/messages.po +++ b/apps/desktop/src/i18n/locales/vi/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/vi/messages.ts b/apps/desktop/src/i18n/locales/vi/messages.ts index f2f4df6d1d8..c05b8a3fd7f 100644 --- a/apps/desktop/src/i18n/locales/vi/messages.ts +++ b/apps/desktop/src/i18n/locales/vi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ngôn ngữ chính\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Thêm ngôn ngữ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bắt đầu khi cuộc họp bắt đầu\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Thêm ngôn ngữ nói\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Ngôn ngữ tìm kiếm...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ngôn ngữ & Khu vực\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Chia sẻ dữ liệu sử dụng\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ứng dụng\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ngôn ngữ nói bổ sung\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bắt đầu Anarlog khi đăng nhập\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Thông báo\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dừng khi cuộc họp kết thúc\"],\"jzmguI\":[\"Cuộc họp\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Không tìm thấy ngôn ngữ phù hợp\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Chọn ngôn ngữ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ngôn ngữ chính\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Thêm ngôn ngữ\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bắt đầu khi cuộc họp bắt đầu\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Thêm ngôn ngữ nói\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Ngôn ngữ tìm kiếm...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ngôn ngữ & Khu vực\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Chia sẻ dữ liệu sử dụng\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ứng dụng\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ngôn ngữ nói bổ sung\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bắt đầu Anarlog khi đăng nhập\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Thông báo\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Dừng khi cuộc họp kết thúc\"],\"jzmguI\":[\"Cuộc họp\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Không tìm thấy ngôn ngữ phù hợp\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Chọn ngôn ngữ\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/wo/messages.po b/apps/desktop/src/i18n/locales/wo/messages.po index dfe768da9fb..964619a361e 100644 --- a/apps/desktop/src/i18n/locales/wo/messages.po +++ b/apps/desktop/src/i18n/locales/wo/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/wo/messages.ts b/apps/desktop/src/i18n/locales/wo/messages.ts index 011f3866315..f08a911af5a 100644 --- a/apps/desktop/src/i18n/locales/wo/messages.ts +++ b/apps/desktop/src/i18n/locales/wo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Làkk wi gëna am solo\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yokk làkk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tàmbali su ndaje bi tàmbalee\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Yokk làkk wiñ làkk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Làkku seetlu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Làkk wi ak Réew mi\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Séddoo done jëfandikoo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Jëfekaay\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yeneen làkk yi ñuy làkk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tàmbali Anarlog ci dugg bi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Yégle yi\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Taxawal su ndaje bi jeexee\"],\"jzmguI\":[\"Ndaje yi\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gisu ñu làkk wu méngoo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Tannal làkk wi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Làkk wi gëna am solo\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yokk làkk\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tàmbali su ndaje bi tàmbalee\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Yokk làkk wiñ làkk\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Làkku seetlu...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Làkk wi ak Réew mi\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Séddoo done jëfandikoo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Jëfekaay\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yeneen làkk yi ñuy làkk\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Tàmbali Anarlog ci dugg bi\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Yégle yi\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Taxawal su ndaje bi jeexee\"],\"jzmguI\":[\"Ndaje yi\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Gisu ñu làkk wu méngoo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Tannal làkk wi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/xh/messages.po b/apps/desktop/src/i18n/locales/xh/messages.po index e7619f836fe..df9dc4a0017 100644 --- a/apps/desktop/src/i18n/locales/xh/messages.po +++ b/apps/desktop/src/i18n/locales/xh/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/xh/messages.ts b/apps/desktop/src/i18n/locales/xh/messages.ts index c2947800ee3..0c89ba3c568 100644 --- a/apps/desktop/src/i18n/locales/xh/messages.ts +++ b/apps/desktop/src/i18n/locales/xh/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulwimi oluphambili\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yongeza ulwimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala xa intlanganiso iqala\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Yongeza ulwimi oluthethwayo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Khangela ulwimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ulwimi & neNgingqi\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yosetyenziso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Usetyenziso\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Iilwimi ezongezelelweyo ezithethwayo\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Qalisa i-Anarlog ekungeneni\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Yima xa kuphela intlanganiso\"],\"jzmguI\":[\"Iintlanganiso\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Akukho lwimi ludibanayo lufunyenweyo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Khetha ulwimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulwimi oluphambili\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yongeza ulwimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala xa intlanganiso iqala\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Yongeza ulwimi oluthethwayo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Khangela ulwimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ulwimi & neNgingqi\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yosetyenziso\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Usetyenziso\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Iilwimi ezongezelelweyo ezithethwayo\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Qalisa i-Anarlog ekungeneni\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Yima xa kuphela intlanganiso\"],\"jzmguI\":[\"Iintlanganiso\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Akukho lwimi ludibanayo lufunyenweyo\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Khetha ulwimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/yi/messages.po b/apps/desktop/src/i18n/locales/yi/messages.po index b0098a96b4f..980b5ae09fd 100644 --- a/apps/desktop/src/i18n/locales/yi/messages.po +++ b/apps/desktop/src/i18n/locales/yi/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/yi/messages.ts b/apps/desktop/src/i18n/locales/yi/messages.ts index 0f245bbf45c..91a7a17400a 100644 --- a/apps/desktop/src/i18n/locales/yi/messages.ts +++ b/apps/desktop/src/i18n/locales/yi/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"צוגעבן שפּראַך\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"אָנהייב ווען באַגעגעניש הייבט זיך אָן\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"צוגעבן גערעדט שפּראַך\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"זוכן שפּראַך...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"שפּראַך און געגנט\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ייַנטיילן באַניץ דאַטן\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אַפּ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"נאך גערעדטע שפראכן\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"אָנהייב אַנאַלאָג ביי לאָגין\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"נאָטיפיקאַטיאָנס\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"האַלטן ווען באַגעגעניש ענדס\"],\"jzmguI\":[\"מיטינגז\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"קיין שטיפעריש שפראכן געפונען\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"סעלעקט שפּראַך\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"צוגעבן שפּראַך\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"אָנהייב ווען באַגעגעניש הייבט זיך אָן\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"צוגעבן גערעדט שפּראַך\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"זוכן שפּראַך...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"שפּראַך און געגנט\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"ייַנטיילן באַניץ דאַטן\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"אַפּ\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"נאך גערעדטע שפראכן\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"אָנהייב אַנאַלאָג ביי לאָגין\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"נאָטיפיקאַטיאָנס\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"האַלטן ווען באַגעגעניש ענדס\"],\"jzmguI\":[\"מיטינגז\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"קיין שטיפעריש שפראכן געפונען\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"סעלעקט שפּראַך\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/yo/messages.po b/apps/desktop/src/i18n/locales/yo/messages.po index db4c6d101b7..3cdf4c461a0 100644 --- a/apps/desktop/src/i18n/locales/yo/messages.po +++ b/apps/desktop/src/i18n/locales/yo/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/yo/messages.ts b/apps/desktop/src/i18n/locales/yo/messages.ts index 794b9213e5d..e7f39849f8f 100644 --- a/apps/desktop/src/i18n/locales/yo/messages.ts +++ b/apps/desktop/src/i18n/locales/yo/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ede akọkọ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Fi ede kun\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bẹrẹ nigbati ipade ba bẹrẹ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Fi ede sisọ kun\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Ede wa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ede & Ekun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pin data lilo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ohun elo\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Awọn ede ti a sọ ni afikun\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bẹrẹ Anarlog ni wiwọle\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Awọn iwifunni\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Duro nigbati ipade ba pari\"],\"jzmguI\":[\"Awọn ipade\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ko si awọn ede ti o baamu ti a rii\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Yan ede\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ede akọkọ\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Fi ede kun\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bẹrẹ nigbati ipade ba bẹrẹ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Fi ede sisọ kun\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Ede wa...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ede & Ekun\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Pin data lilo\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Ohun elo\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Awọn ede ti a sọ ni afikun\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Bẹrẹ Anarlog ni wiwọle\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Awọn iwifunni\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Duro nigbati ipade ba pari\"],\"jzmguI\":[\"Awọn ipade\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Ko si awọn ede ti o baamu ti a rii\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Yan ede\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/zh/messages.po b/apps/desktop/src/i18n/locales/zh/messages.po index e4ed4f60f57..0d06b1062d6 100644 --- a/apps/desktop/src/i18n/locales/zh/messages.po +++ b/apps/desktop/src/i18n/locales/zh/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/zh/messages.ts b/apps/desktop/src/i18n/locales/zh/messages.ts index 50c864ab77c..be1581a5b40 100644 --- a/apps/desktop/src/i18n/locales/zh/messages.ts +++ b/apps/desktop/src/i18n/locales/zh/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"主要语言\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"添加语言\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会议开始时启动\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"添加口语语言\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"搜索语言...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"语言和地区\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"分享使用数据\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"应用\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"其他口语语言\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"登录时启动 Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"会议结束时停止\"],\"jzmguI\":[\"会议\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"未找到匹配的语言\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"选择语言\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"主要语言\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"添加语言\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会议开始时启动\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"添加口语语言\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"搜索语言...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"语言和地区\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"分享使用数据\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"应用\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"其他口语语言\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"登录时启动 Anarlog\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"会议结束时停止\"],\"jzmguI\":[\"会议\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"未找到匹配的语言\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"选择语言\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/zu/messages.po b/apps/desktop/src/i18n/locales/zu/messages.po index a6242b4c441..f24da69e8cd 100644 --- a/apps/desktop/src/i18n/locales/zu/messages.po +++ b/apps/desktop/src/i18n/locales/zu/messages.po @@ -45,6 +45,11 @@ msgstr "" msgid "{0} opened on" msgstr "" +#. placeholder {0}: proposals.length +#: src/session/components/pending-proposals-banner.tsx +msgid "{0} pending edits" +msgstr "" + #. placeholder {0}: Math.round((percentage ?? 0) * 100) #: src/session/components/note-input/transcript/screens/empty.tsx msgid "{0}% complete" @@ -99,6 +104,10 @@ msgstr "" msgid "1 month" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "1 pending edit" +msgstr "" + #: src/settings/general/audio-settings.tsx msgid "1 week" msgstr "" @@ -529,6 +538,14 @@ msgstr "" msgid "Apply to all" msgstr "" +#: src/edit/tab-content.tsx +msgid "Apply to memo" +msgstr "" + +#: src/edit/tab-content.tsx +msgid "Apply to summary" +msgstr "" + #: src/settings/sync/index.tsx msgid "Approval requested" msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Date and time are required" msgstr "" +#: src/edit/tab-content.tsx +msgid "Decline" +msgstr "" + #: src/settings/appearance/app-icon.tsx msgid "Default" msgstr "" @@ -2473,6 +2494,10 @@ msgstr "" msgid "Loading devices" msgstr "" +#: src/edit/tab-content.tsx +msgid "Loading edit…" +msgstr "" + #: src/settings/ai/shared/model-combobox.tsx msgid "Loading models..." msgstr "" @@ -2641,6 +2666,7 @@ msgstr "" msgid "Members" msgstr "" +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Memo" msgstr "" @@ -3652,6 +3678,14 @@ msgstr "" msgid "Retry" msgstr "" +#: src/session/components/pending-proposals-banner.tsx +msgid "Review memo" +msgstr "" + +#: src/session/components/pending-proposals-banner.tsx +msgid "Review summary" +msgstr "" + #: src/settings/developers/api-key-row.tsx msgid "Revoke" msgstr "" @@ -4417,6 +4451,7 @@ msgid "Summaries" msgstr "" #: src/contacts/details.tsx +#: src/edit/tab-content.tsx #: src/session/components/outer-header/overflow/export-modal.tsx msgid "Summary" msgstr "" @@ -4633,6 +4668,10 @@ msgstr "" msgid "This device's sync identity does not match your account. Sign in again or check Sync settings." msgstr "" +#: src/edit/tab-content.tsx +msgid "This edit is no longer pending." +msgstr "" + #: src/session/components/outer-header/index.tsx msgid "This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action." msgstr "" @@ -4839,6 +4878,10 @@ msgstr "" msgid "Untitled Note" msgstr "" +#: src/edit/tab-content.tsx +msgid "Untitled session" +msgstr "" + #: src/settings/team/index.tsx msgid "Upcoming bot attendance" msgstr "" diff --git a/apps/desktop/src/i18n/locales/zu/messages.ts b/apps/desktop/src/i18n/locales/zu/messages.ts index 47d7e5e11af..fab1782a542 100644 --- a/apps/desktop/src/i18n/locales/zu/messages.ts +++ b/apps/desktop/src/i18n/locales/zu/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulimi oluyinhloko\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engeza ulimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala uma umhlangano uqala\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Engeza ulimi olukhulunywayo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BgiToP\":[\"Sesha ulimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ulimi Nesifunda\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yokusetshenziswa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Uhlelo lokusebenza\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Izilimi ezengeziwe ezikhulunywayo\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Qala i-Anarlog ekungeneni ngemvume\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Yima lapho umhlangano uphela\"],\"jzmguI\":[\"Imihlangano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Azikho izilimi ezifanayo ezitholiwe\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_sb6z\":[\"Khetha ulimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-H0bb5\":[\"next week\"],\"-IpDiW\":[\"Finishing connection…\"],\"-Jaxob\":[\"Share a meeting recap in Slack\"],\"-K0AvT\":[\"Disconnect\"],\"-KDG9i\":[\"Loading Cloud API access\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-RfGxS\":[\"Downloading \",[\"downloadingModel\"]],\"-X78kv\":[\"Record your voice in meetings and calls.\"],\"-_qSYK\":[\"Sign in to view this shared note\"],\"-aQSba\":[\"Remove repository\"],\"-hj1LV\":[\"Access settings could not be loaded.\"],\"-lkIMo\":[\"AI step\"],\"-nqVyF\":[\"Manage billing\"],\"-srhbK\":[\"Sent \",[\"0\"]],\"-yybWq\":[\"A dated Notion update with the meeting summary.\"],\"-z38sm\":[\"Your notes and recordings are safe. Upgrade anytime to keep cloud transcription and Pro features, or configure your own transcription provider.\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"0DcKz5\":[\"Automation draft saved\"],\"0Gd0NU\":[\"Shared\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Ulimi oluyinhloko\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0t6oQq\":[\"Needs setup\"],\"10zD_S\":[\"Post a recap to Slack\"],\"151wvk\":[\"Show sidebar\"],\"18yhfX\":[\"Claim email domain\"],\"191SZU\":[\"Could not transcribe voice input\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1llTWL\":[\"File each action item as an issue in the selected team.\"],\"1mHPcv\":[\"Sign in with ChatGPT Plus or Pro. We'll open Anarlog and finish connecting.\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engeza ulimi\"],\"1wdjme\":[\"People\"],\"1x4W9u\":[\"Add example\"],\"1ylpw4\":[\"Draft follow-up email.\"],\"1yxOnC\":[\"Clean Up\"],\"27z-FV\":[\"Job Title\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2g7gY8\":[\"Anarlog will keep retrying in the background. Your notes remain available locally.\"],\"2gv2xy\":[\"Anarlog is repairing cloud sync in the background. Your notes remain available locally.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"2oYy3i\":[\"Choose the speakers that play other participants so Anarlog records them.\"],\"2pItNo\":[\"Typewriter Key\"],\"2xBtC2\":[\"Choose a Notion page first.\"],\"2xeMwH\":[\"Automation actions\"],\"3-IH46\":[\"This device will start syncing after you approve it from another signed-in device.\"],\"3-KNAJ\":[\"Resolve the web and desktop edits before inviting anyone.\"],\"32f94m\":[\"Permissions granted\"],\"34xt3Q\":[\"Reasoning models think through the transcript before writing.\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3MFXAl\":[\"Changes stay on this device until you resume sync\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3TSz9S\":[\"Minimize\"],\"3Vs8JJ\":[\"Last run \",[\"relative\"],\": \",[\"0\"]],\"3_Glhm\":[\"Your notes remain available locally.\"],\"3bebkR\":[\"Kimi Code API key\"],\"3ceSs4\":[\"Loading edit…\"],\"3fPjUY\":[\"Pro\"],\"3gDX6V\":[\"Set \",[\"providerName\"],\" as the current provider?\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala uma umhlangano uqala\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5mZqs7\":[\"Anarlog needs microphone and system audio to transcribe your meetings, plus Accessibility to read meeting controls, visible chat, and participant status.\"],\"5r6eGf\":[\"Sending and receiving your latest changes.\"],\"5rZNxc\":[\"Use recovery key instead\"],\"5ri8SU\":[[\"0\"],\" \",[\"noteLabel\"],\" deleted\"],\"5ya6et\":[\"No automation draft yet\"],\"5zAbWs\":[\"Expected output\"],\"6-P0_N\":[\"Comment on selected text\"],\"63Q_VZ\":[\"Customized\"],\"64Jq-V\":[\"Create a recovery key\"],\"65dxv8\":[\"Send email\"],\"66Ry7H\":[\"Render canonical Markdown\"],\"69ivbn\":[\"Start with a favorite template\"],\"6BjJ-_\":[\"Open calendar\"],\"6CxDbg\":[\"in \",[\"weeks\"],\" weeks\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"6gruMk\":[\"Cloud sync unavailable\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"6z9W13\":[\"Restart\"],\"71Bf_y\":[\"Meeting notes sent to #\",[\"0\"],\".\"],\"71Q2al\":[\"Migration complete\"],\"721JDQ\":[\"Eligible for free trial\"],\"76gPWk\":[\"Got it\"],\"7FaY4u\":[\"Usage\"],\"7IM4ve\":[\"Too many uploads are waiting. Open an existing upload and try again.\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"86olru\":[\"View sync log\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8XD6tj\":[\"Upload Audio\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8f2_8N\":[\"Upgrade to enable\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8r2Wdb\":[\"Upgrade to save\"],\"8siVfG\":[\"Try the demo\"],\"92tjIf\":[\"Record other participants in meetings.\"],\"97ALRU\":[\"Sign in with ChatGPT Plus or Pro, then paste the redirect URL from your browser.\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Engeza ulimi olukhulunywayo\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AYVe7M\":[\"A Slack message with the meeting title and recap.\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"A_X2ow\":[\"Anarlog could not generate this summary because you were not signed in. Sign in, then try again.\"],\"AaBSwk\":[[\"months\"],\" months ago\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"Ae-B2f\":[\"Recording not found. It may have been deleted.\"],\"AeXO77\":[\"Account\"],\"AhCDD0\":[\"Could not open the web copy.\"],\"AjVXBS\":[\"Calendar\"],\"AmBvhe\":[\"Choose export folder\"],\"AnNF5e\":[\"Accessibility\"],\"ApinFT\":[\"Prevent selected apps from triggering meeting detection.\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"BcKcB2\":[\"Review summary\"],\"BgiToP\":[\"Sesha ulimi...\"],\"BjBTOB\":[\"Use your microphone to capture your voice\"],\"Bo-k0X\":[\"Choose a channel\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"By1vhu\":[\"New automation\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C-fsgc\":[\"Loading sync settings\"],\"C0Fx9N\":[\"Your dictionary is empty\"],\"C0rVIc\":[\"Ulimi Nesifunda\"],\"C1DCFO\":[\"Having trouble?\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CS0Zge\":[\"Choose a starter from the sidebar, or create a workflow and add steps like Zapier.\"],\"CWoc3c\":[\"For enabled notifications\"],\"Ci62Eh\":[\"No speech detected\"],\"Clc3vQ\":[\"in \",[\"absDays\"],\" days\"],\"Cmv16T\":[\"Sort options\"],\"CopAXR\":[\"Low-light canvas\"],\"CozWO1\":[\"Workspace name\"],\"CxY9id\":[\"Connect & import\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D2vvk0\":[\"Audio available\"],\"D7QPok\":[\"Cloud API key copied\"],\"D87pha\":[\"Closed\"],\"DAOnB5\":[\"Take the enhanced note with decisions and action items.\"],\"DBC3t5\":[\"Sunday\"],\"DDXnYn\":[\"Language model needed\"],\"DDziIo\":[\"Transcript\"],\"DPfwMq\":[\"Done\"],\"DY1Qey\":[\"Edit date\"],\"DYiB61\":[\"Select summary length\"],\"DZe_N-\":[\"Signing out...\"],\"Dc6u9J\":[\"Linear issues\"],\"Dd7YLj\":[\"Maybe later\"],\"DdJIit\":[\"System audio\"],\"DfQSu3\":[\"View Note\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"DxIr1C\":[\"Unlock Note\"],\"DxNqRd\":[\"Control listening without reopening Anarlog.\"],\"DzZ7BS\":[\"Authenticating…\"],\"E-cRfX\":[\"Upgrade to Pro to invite people and share this note with them.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"ETiW1M\":[\"Sentry\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"FZj6nC\":[\"Cloud API & Connectors\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_PO0w\":[\"Turn on sync to create or enter your recovery key.\"],\"F_VKbT\":[\"Find a note...\"],\"Fav6lD\":[\"Shares (30d)\"],\"FdILp7\":[\"Create new speaker\"],\"Fi5cYq\":[\"Current default\"],\"Fj7Zd1\":[\"Select day\"],\"FlJiJU\":[\"Configure a chat model in Settings\"],\"Fp5nm1\":[\"Workspace subdomain\"],\"Fw5bYu\":[\"Anarlog skill added to \",[\"0\"],\" agents\"],\"G1Gw0v\":[\"New template\"],\"G3Z2zi\":[\"Copy this key now — it is only shown once.\"],\"G4Pd27\":[\"Yabelana ngedatha yokusetshenziswa\"],\"GExs1H\":[\"Session note views\"],\"GKxRQX\":[\"Examples are used only to improve this format. They are not saved or reused for future meetings.\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gh5138\":[\"Capture meeting chat in Memos\"],\"GhYKXY\":[\"After recording\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"GoIDqw\":[\"Connect Notion\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"GsBUCk\":[\"Loading settings\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H8UYML\":[\"No page selected yet.\"],\"H8W1Qn\":[\"Require Windows Hello face, PIN, or password when opening Anarlog.\"],\"HKH-W-\":[\"Data\"],\"HMrHlg\":[\"Keep forever\"],\"HNmPEk\":[\"Rename device\"],\"HOyUpV\":[[\"model\"],\" can't transcribe all selected languages together. Try another model or use fewer spoken languages.\"],\"HZ9zJk\":[\"Transcription unavailable\"],\"HcTERG\":[\"Keep synced notes readable only on your devices.\"],\"HeaW7e\":[\"Use this language for summaries and AI responses.\"],\"Heltdg\":[\"Meeting exports\"],\"HiUTKa\":[\"Send the summary in the email. Replies go directly to you.\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"HzgmGa\":[\"Rename workspace\"],\"I-T0a0\":[\"Anarlog will retry automatically.\"],\"I4BFdL\":[\"Folder: \",[\"currentPath\"]],\"IHEQjl\":[\"Could not update the automation\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IU2i29\":[\"Cloud sync\"],\"IUbI7G\":[\"Cloud sync is available with Anarlog Pro\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JD3In6\":[\"Starting…\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JKtRFe\":[\"Then\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"JzFuJC\":[\"Delete \",[\"pendingDeleteCount\"],\" selected notes?\"],\"K7uySY\":[\"Add API key\"],\"K9J76M\":[\"(Unavailable — using current default)\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KM6m8p\":[\"Team\"],\"KMguMT\":[\"Anarlog Pro is required to use cloud sync.\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LEv5Yn\":[\"Application menu\"],\"LMUw1U\":[\"Uhlelo lokusebenza\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGBNwj\":[\"Pause sync\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MXFksL\":[\"Match whole word\"],\"MXSt4t\":[\"Created \",[\"0\"]],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"Mb_V6-\":[\"No sync activity yet.\"],\"Mf9WvH\":[\"Search or create folder\"],\"Mguhdv\":[\"No folders yet.\"],\"MkQ2cO\":[\"Use the meeting's action items and summary tasks.\"],\"MpDoiU\":[\"Install Anarlog and sign in with this account on the new device. It will appear here automatically so you can approve it.\"],\"MtIGpK\":[\"Connect your integration\"],\"MxG6Tl\":[\"When this happens\"],\"MzoKmx\":[\"Teach coding agents when and how to use the Anarlog CLI and MCP\"],\"N0lNct\":[\"CLI & MCP\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"NQ2wIA\":[\"Upgrade to Pro to customize Auto format\"],\"NUKYfg\":[\"Show in folder\"],\"NaTTVW\":[\"Keep notes encrypted and synced across your devices.\"],\"NbOWt_\":[\"Untitled Note\"],\"NeswA7\":[\"Change speaker\"],\"NfU0YC\":[\"No devices registered yet.\"],\"NjtJ0y\":[\"Sketch\"],\"NkXL2X\":[\"Create key\"],\"NmfOr-\":[\"No folders found.\"],\"NnH3pK\":[\"Test\"],\"NponFJ\":[\"Could not restore deleted note\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"Nu4DdT\":[\"Sync\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder that \",[\"cloudStorageService\"],\" does not sync.\"],\"OOiclf\":[\"Choose how long recordings stay on this device.\"],\"OTGkr0\":[\"Configure a chat model to use the quick composer.\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"PBxg_E\":[\"Not now\"],\"PFKW5i\":[\"My notes\"],\"PGtCmA\":[\"Find key decisions.\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to be structured and written.\"],\"PaQ3df\":[\"Enable\"],\"Pc1V9A\":[\"Choose a transcription model to start listening.\"],\"PcCC_8\":[\"Close changelog\"],\"Po0vX_\":[\"Hide preview\"],\"PrxYL0\":[\"Search emoji...\"],\"Q0l4_y\":[\"Append an update to Notion\"],\"Q1mtyd\":[\"Hide sidebar\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"Q6BEvk\":[\"Created \",[\"createdAt\"]],\"Q6Mkm5\":[\"Could not start sign-in.\"],\"Q9i7yg\":[\"Anarlog \",[\"0\"],\" is ready to install\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QHxHV_\":[\"Cloud sync setup required\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"RkzoCG\":[\"Open the meeting link when listening starts.\"],\"RrPlQ-\":[\"Setting up encrypted cloud sync.\"],\"RsEOql\":[\"teammate@company.com\"],\"Rxypyj\":[\"Try speaking a little closer to the microphone.\"],\"RxzN1M\":[\"Enabled\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SEOCnD\":[\"Sharing paused to protect your edits\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SnEaY6\":[\"Suggested attendees\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-1mQl\":[\"Your summary is ready.\"],\"T-xShk\":[\"See all templates\"],\"T51Qav\":[\"received\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TIdxZZ\":[\"Create or enter your recovery key in Sync settings to start syncing.\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"TYNgXr\":[\"Invite people to this note.\"],\"TYVgbP\":[\"Include\"],\"TgZOXj\":[\"Choose folder\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"Tn5VWz\":[\"Composer\"],\"TvBXG7\":[\"Search contacts...\"],\"TvY_XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TzcAJ0\":[\"Sharing domain\"],\"U1OzID\":[\"Older files that differ from your current data were kept as recovery copies. No action is required.\"],\"U1hok1\":[\"Voice input is unavailable while Anarlog is recording a meeting.\"],\"U3pytU\":[\"Admin\"],\"U5brlE\":[\"Anarlog member\"],\"U6wmNc\":[\"Sync paused\"],\"U8RNkW\":[\"a week ago\"],\"UF6vwM\":[\"Insert below\"],\"UJIZxd\":[\"Have Anarlog ready when you sign in.\"],\"UM9X6G\":[\"Cancel bot\"],\"UODtG8\":[\"Merge\"],\"URAE3q\":[\"Paused\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UmuIdg\":[\"Go to Home\"],\"Us-t-3\":[\"Your Pro trial just started\"],\"UulWGq\":[\"Wait until the transcript and note are complete.\"],\"Uv0T0F\":[\"Migration status unavailable\"],\"V8B1wG\":[\"Last synced \",[\"0\"]],\"V8yTm6\":[\"Clear search\"],\"VAOn4r\":[\"Unlock\"],\"VGYp2r\":[\"Apply to all\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VNzYSx\":[\"Anarlog couldn't read cloud sync status. Your notes are still available locally.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VhM-Sc\":[\"Creating brief...\"],\"VkKUPZ\":[\"Help improve Anarlog with anonymous usage data.\"],\"VrH1k-\":[\"Dictionary\"],\"Vu6Y8G\":[\"Summary format\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"W5A0Ly\":[\"An unexpected error occurred.\"],\"W6-yFb\":[\"Invite people\"],\"W7248R\":[\"Add \",[\"0\"],\" in System Settings > General > Language & Region to transcribe with \",[\"model\"],\", or choose another model.\"],\"WHMIq9\":[\"Post a meeting recap to a Slack channel.\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Weq9zb\":[\"General\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"X6hozX\":[\"Checking installed meeting assistants…\"],\"X73vDh\":[\"Remote MCP URL copied\"],\"X7_mGC\":[\"Create a brief to prepare this meeting\"],\"X996Xc\":[\"Could not update the note date.\"],\"XDCX3x\":[\"permission panel.\"],\"XIcN2N\":[\"Append the meeting update\"],\"XJAILe\":[\"Notion update\"],\"XJOV1Y\":[\"Activity\"],\"XLq_rc\":[\"Sign in to create a shared workspace for your team.\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YnRbXW\":[\"Devtools panel\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZBMVmH\":[\"Cloud sync resumes when the current activity finishes\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZnOune\":[\"Sync issue\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"adZDY4\":[\"Upload Transcript\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"avlST-\":[\"Re-transcribe\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"b0YE0Q\":[\"Create Linear issues from action items\"],\"b0qXs1\":[\"Start a Pro trial or add your own LLM API key to generate a summary from this transcript.\"],\"b17lG5\":[\"Add and configure at least one action first.\"],\"b1hl3x\":[\"Compare Free and Pro before you sign in.\"],\"b2_aeu\":[\"Migration needs attention\"],\"b3e7Re\":[\"Restart App\"],\"b7nGQo\":[\"Anarlog \",[\"0\"],\" is available\"],\"b8SkqG\":[\"Search providers\"],\"bAb7RH\":[\"Contact options\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bEj2rI\":[\"Require SSO\"],\"bHNXmG\":[\"Loading devices\"],\"bLt_0J\":[\"Workflow\"],\"bNs_sx\":[\"Nothing new was imported. \",[\"0\"],\" meetings need review and \",[\"1\"],\" could not be imported.\"],\"bO-cDG\":[\"Model download couldn’t start\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Izilimi ezengeziwe ezikhulunywayo\"],\"bUUv3P\":[\"Scroll to top\"],\"bZDZsh\":[\"Go to recent\"],\"bdVOAR\":[\"Cloud sync is limited to 5 devices. Replace or remove another device to sync here.\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"Meeting ends\"],\"cS6dkv\":[\"Paste the localhost redirect URL\"],\"cWXW-7\":[\"Add webhook\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cdf_PV\":[\"Email unavailable. Invite link copied instead.\"],\"cgex15\":[\"Device name\"],\"ck2cUV\":[\"This device's sync identity does not match your account. Sign in again or check Sync settings.\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"dxt-PG\":[\"Cloud sync status: \",[\"0\"]],\"e4hWru\":[\"Sync your changes before signing out.\"],\"e5bmqt\":[\"This edit is no longer pending.\"],\"e5xZRK\":[\"Transcribing…\"],\"eD0x56\":[\"Could not load Slack channels. Reconnect Slack and try again.\"],\"eIyYAe\":[\"Linear issues created from meeting follow-ups.\"],\"eJOEBy\":[\"Exporting...\"],\"eJl7Zu\":[\"Filter notes\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. Try again.\"],\"eneWvv\":[\"Draft\"],\"erwOSy\":[\"This is a prerecorded demo, so your camera stays off. Click Join & record to see Anarlog in action.\"],\"etUJEW\":[\"Qala i-Anarlog ekungeneni ngemvume\"],\"etgedT\":[\"Emojis\"],\"euc6Ns\":[\"Duplicate\"],\"exPLNu\":[\"Approved — waiting for this device to finish\"],\"ez-trO\":[\"Reconnect Slack\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gD8M9g\":[\"Only workspace admins can see who has access. You are a member of this workspace.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gRxJ0c\":[\"Resume listening\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"gbIwAj\":[\"Delete recording\"],\"gcoiFh\":[\"Reconnect\"],\"gggTBm\":[\"LinkedIn\"],\"gjVMaL\":[\"Save subdomain\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"gpy-fr\":[\"Generating transcript...\"],\"grt0Pu\":[\"Seats\"],\"gvkTvc\":[\"Anarlog will retry automatically. This does not affect your notes.\"],\"gz6UQ3\":[\"Maximize\"],\"h4rVqT\":[\"Change photo\"],\"hACL1R\":[\"What are my action items from this meeting?\"],\"hE3J-E\":[\"Delete This Event\"],\"hH2C0D\":[\"Connected with your existing subscription.\"],\"hIQkLb\":[\"New chat\"],\"hKotB7\":[\"Suggest a Feature\"],\"hONDVL\":[\"Re-transcribe this audio, or upload a transcript file.\"],\"hOq8KF\":[\"The link may have expired or its access may have changed.\"],\"hT1Dua\":[\"Sync settings\"],\"hYgDIe\":[\"Create\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9jmtG\":[\"Search settings...\"],\"iAL9tI\":[\"Configure\"],\"iCzl-N\":[\"Recent activity from this app session.\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iI5kSO\":[\"Verify domain\"],\"iJ00zf\":[\"The update download failed\"],\"iOHafC\":[\"Could not copy the MCP configuration\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iUQ7cw\":[\"Loading channels…\"],\"iVDELR\":[\"Go to next section\"],\"iVKpqc\":[\"Summaries\"],\"iWpEwy\":[\"Go home\"],\"i_FBLv\":[\"Select folder\"],\"iaFBYj\":[\"Build a custom dictionary with Anarlog Pro\"],\"ict6gq\":[\"Loading calendars...\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKUSo2\":[\"This account already syncs on 5 devices. Remove another device to sync here.\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jgokwX\":[\"Cloud sync is limited to 5 devices. Remove another device to sync here.\"],\"jhTeLV\":[\"Show the timeline in your preferred timezone.\"],\"jpctdh\":[\"View\"],\"jqf2C_\":[\"Cloud API enabled — \",[\"uploaded\"],\" meetings uploaded\"],\"jqzUyM\":[\"Unavailable\"],\"jzl8IQ\":[\"Yima lapho umhlangano uphela\"],\"jzmguI\":[\"Imihlangano\"],\"k1aXEG\":[\"Delete 1 selected note?\"],\"k2H8JK\":[\"Set as current\"],\"k8BJbJ\":[\"No notes found.\"],\"k8od7T\":[\"Remove photo\"],\"kH1W2H\":[\"No upcoming bots.\"],\"kHo6SL\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list.\"],\"kJygHz\":[\"Balanced\"],\"kMOdxv\":[\"Add a trigger and actions. Chat on the right can help you refine the workflow.\"],\"kPOw9O\":[\"Copy message\"],\"kPWvuy\":[\"Linear team\"],\"kUWjsV\":[\"Azikho izilimi ezifanayo ezitholiwe\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kYu0eF\":[\"Delete workspace\"],\"k_Ltte\":[\"1 pending edit\"],\"k_sb6z\":[\"Khetha ulimi\"],\"kihNW_\":[\"Let people with access play the recording.\"],\"kiobhd\":[\"Shared note unavailable\"],\"kjAL4v\":[\"Ticket\"],\"knHYgz\":[\"Share link copied.\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lDy_g_\":[\"Anarlog Pro required\"],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No pages found. Share the page with the Anarlog integration in Notion first.\"],\"lkz6PL\":[\"Duration\"],\"llmOLU\":[\"Anarlog can read meeting details\"],\"lsaojV\":[\"Model is thinking...\"],\"lvl9HZ\":[\"Add a trigger, then stack actions like Zapier.\"],\"lyjq5X\":[\"Slack\"],\"lzVSmq\":[\"Download recovery key (.txt)\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will not be shown again.\"],\"mMUI_L\":[\"No people\"],\"mNXjQA\":[\"No match\"],\"mOA2dh\":[\"\\\"\",[\"title\"],\"\\\" is ready to read.\"],\"mQw6s_\":[\"Send to Slack\"],\"mSA7yc\":[\"Unlock sync\"],\"mTbSeR\":[\"Having trouble? Paste the redirect URL\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"mZXBoQ\":[\"Add at least one example summary.\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mc1qE4\":[\"Add an action\"],\"mcmuCe\":[\"Icons\"],\"md0Fks\":[\"in \",[\"months\"],\" months\"],\"mfCE52\":[\"commented on\"],\"ml_S8n\":[\"No shared notes\"],\"mlpJu7\":[\"Save policies\"],\"mmd4az\":[\"Connect Slack\"],\"mouVCq\":[\"Esc to dismiss\"],\"mvUHTg\":[\"Reset to default format\"],\"mwHfxS\":[\"Brought in \",[\"0\"],\" new meetings. \",[\"1\"],\" were already here.\"],\"mySM6P\":[\"Approval requested\"],\"mzI_c-\":[\"Download\"],\"n-SX4g\":[\"Developers\"],\"n1LL61\":[\"Device authentication is not available on this computer.\"],\"n1hlQu\":[\"Invitation sent.\"],\"n3QOtZ\":[\"Comment on the selected text…\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"nBy9r_\":[\"Cloud sync could not start on this device. Open Sync settings to try again.\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPHeE0\":[\"Devtools\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nhMLCJ\":[\"Open panel\"],\"njJFtc\":[\"Delete comment\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS could not access your recovery key. Repair Keychain access, then resume sync.\"],\"oOi11l\":[\"Scroll to bottom\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"oS6WJQ\":[\"Export folder\"],\"oSPMXq\":[\"Shared notes are tied to the account they were shared with.\"],\"oVsZkC\":[\"Transcription provider needed\"],\"oaknHa\":[\"Each example must be 12,000 characters or fewer.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"ompZKT\":[\"Cloud sync identity mismatch\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"oqB2ez\":[\"Previous match\"],\"orZBtV\":[\"Travel & Places\"],\"osG36d\":[\"Enter your saved recovery key when another approved device is unavailable.\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"ovBPCi\":[\"Default\"],\"p2wgGs\":[\"Anagram\"],\"p3a31H\":[\"Best for this Mac\"],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBSb7_\":[\"View Anarlog\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pISnSe\":[\"Hide sync log\"],\"pIsxrf\":[\"Invitations sent.\"],\"pK_zAe\":[\"Use Touch ID or enter your password to view.\"],\"pLK9IG\":[\"Help transcription recognize names, jargon, and product terms.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pa0Bbi\":[\"Sign in again\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qav-C5\":[\"Preview the summary format, then upgrade to Pro to customize it.\"],\"qavm0B\":[\"Devices\"],\"qb5KvG\":[\"Get Pro to customize\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rFmBG3\":[\"Color theme\"],\"rFqsC6\":[\"Upgrade to customize\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"rSMELV\":[\"The notes on this device are linked to another Anarlog account. Sign in with the account previously used here.\"],\"rSr5w2\":[\"Uploads meeting content for remote access while Anarlog is closed.\"],\"rYWPW2\":[\"Hide Sidebar\"],\"raSeup\":[\"Connect calendar\"],\"raeg3p\":[\"Copy \",[\"label\"],\" URL\"],\"rd579E\":[\"Could not check the CLI: \",[\"0\"]],\"rdUucN\":[\"Preview\"],\"refBaZ\":[\"Choose files\"],\"rhNyWi\":[\"Related Notes\"],\"rjGI_Q\":[\"Privacy\"],\"rn7n0G\":[\"Resume sync\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to keep Pro features.\"],\"s86AfG\":[\"Reconnect required for \",[\"0\"],\" Calendar\"],\"s8ghQk\":[\"Allow anyone-with-the-link sharing\"],\"s9UQfU\":[\"Ask Anarlog AI anything\"],\"sAy0Tp\":[\"Automation deleted\"],\"sDJpL7\":[\"Use this domain for links shared from this workspace.\"],\"sDfnu-\":[\"Open Anarlog on a device that already has access, then approve this device.\"],\"sHmh7I\":[\"Your Pro trial has ended\"],\"sISV5b\":[[\"model\"],\" can't transcribe \",[\"0\"],\". Try another model or change your spoken languages.\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key from your Kimi Code membership.\"],\"sUScUc\":[\"Summary length\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"scmRyR\":[\"Full access\"],\"sf8lHS\":[\"Session title\"],\"sifLVv\":[\"After the meeting summary is ready\"],\"sir9ZC\":[\"Upload audio or a transcript file to populate this note.\"],\"skDD9J\":[\"Install to all agents\"],\"snzKVr\":[\"Add names, jargon, or product terms to prefer\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t6rjzx\":[\"Read meeting controls, chat, and participant status.\"],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tD7jjZ\":[\"Read meeting controls, visible chat, and participant status\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tUVwfQ\":[\"Detailed\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"t_YqKh\":[\"Remove\"],\"tcFTe9\":[\"Shared note\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"te1LLn\":[\"Saved locally\"],\"tfDRzk\":[\"Save\"],\"tmWN4R\":[\"Opens System Settings and guides you to add Anarlog to the \",[\"0\"],\" list\"],\"tofQmW\":[\"Import notes and transcripts from the meeting apps you already use.\"],\"trYEaB\":[\"Audio is not available on this device.\"],\"tsNXiq\":[\"After the meeting ends\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uHIPUT\":[\"Syncing...\"],\"uLB0dR\":[\"Preview notifications, toasts, updates, and billing dialogs. Only available in dev and staging builds.\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"u_tVsY\":[\"Sign in with Claude Pro or Max. After you authorize, we'll pick up the code and finish connecting.\"],\"ucgZ0o\":[\"Organization\"],\"ugMxU7\":[\"Trial activated - \",[\"trialDays\"],\" days of Pro\"],\"uhOWto\":[\"Checking migration...\"],\"ujd9wF\":[\"Add device\"],\"ull1YQ\":[\"Could not create the pre-meeting brief. Try again.\"],\"unYhjV\":[\"No folder selected yet.\"],\"upCdxt\":[\"Access meetings remotely through the REST API and MCP connectors with Anarlog Pro.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uulpLj\":[\"Make owner\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFzp-V\":[\"Setting up cloud sync\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"varzpF\":[\"Starting in 1 minute\"],\"vgpfCi\":[\"Save draft\"],\"voMgY-\":[\"1 month\"],\"vpP_9M\":[\"Transcribe meetings that use more than one language.\"],\"w4sJzI\":[\"Cloud sync resumes after this meeting finishes processing\"],\"w6qPWt\":[\"Production\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wYhskg\":[\"Could not prepare this upload. Please try again.\"],\"wbvOwf\":[\"Upload transcript\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"xCrBgO\":[\"No providers found.\"],\"xCx9Xo\":[\"Loading Auto format...\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xK4Xoz\":[\"Add step\"],\"xLFTwf\":[\"Speakers\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xvN1F8\":[\"Replace repository\"],\"y1eoq1\":[\"Copy link\"],\"y7e9aS\":[\"View plans\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"y_0uwd\":[\"Yesterday\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"yaZZA3\":[\"Slack recap\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yhHRxm\":[\"Summary ready\"],\"ylo1I0\":[\"Last used \",[\"0\"]],\"ym6Fv7\":[\"Untitled session\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z0t9bb\":[\"Login\"],\"z36QYN\":[\"Recipient email\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zMjN8w\":[\"REST API\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/session/components/pending-proposals-banner.test.tsx b/apps/desktop/src/session/components/pending-proposals-banner.test.tsx new file mode 100644 index 00000000000..96646137d81 --- /dev/null +++ b/apps/desktop/src/session/components/pending-proposals-banner.test.tsx @@ -0,0 +1,55 @@ +import { cleanup, fireEvent, render, screen } from "@testing-library/react"; +import { afterEach, describe, expect, it, vi } from "vitest"; + +const mocks = vi.hoisted(() => ({ + usePendingSessionProposals: vi.fn(), + openProposalReview: vi.fn(), +})); + +vi.mock("~/session/queries", () => ({ + usePendingSessionProposals: mocks.usePendingSessionProposals, +})); + +vi.mock("~/session/proposal-review", async () => { + const actual = await vi.importActual< + typeof import("~/session/proposal-review") + >("~/session/proposal-review"); + return { + ...actual, + openProposalReview: mocks.openProposalReview, + }; +}); + +import { PendingProposalsBanner } from "./pending-proposals-banner"; + +describe("PendingProposalsBanner", () => { + afterEach(() => { + cleanup(); + }); + + it("hides when the meeting has no pending proposals", () => { + mocks.usePendingSessionProposals.mockReturnValue([]); + + const { container } = render( + , + ); + + expect(container.textContent).toBe(""); + expect(screen.queryByRole("button")).toBeNull(); + }); + + it("opens the review tab for a pending summary proposal", () => { + mocks.usePendingSessionProposals.mockReturnValue([ + { + id: "proposal-1", + kind: "summary_replace", + }, + ]); + + render(); + + expect(screen.getByText("1 pending edit")).toBeTruthy(); + fireEvent.click(screen.getByRole("button", { name: "Review summary" })); + expect(mocks.openProposalReview).toHaveBeenCalledWith("proposal-1"); + }); +}); diff --git a/apps/desktop/src/session/components/pending-proposals-banner.tsx b/apps/desktop/src/session/components/pending-proposals-banner.tsx new file mode 100644 index 00000000000..056db7c76c9 --- /dev/null +++ b/apps/desktop/src/session/components/pending-proposals-banner.tsx @@ -0,0 +1,47 @@ +import { Trans } from "@lingui/react/macro"; + +import { Button } from "@anlg/ui/components/ui/button"; + +import { + openProposalReview, + proposalKindLabel, +} from "~/session/proposal-review"; +import { usePendingSessionProposals } from "~/session/queries"; + +export function PendingProposalsBanner({ sessionId }: { sessionId: string }) { + const proposals = usePendingSessionProposals(sessionId); + if (proposals.length === 0) { + return null; + } + + return ( +
+
+

+ {proposals.length === 1 ? ( + 1 pending edit + ) : ( + {proposals.length} pending edits + )} +

+
+ {proposals.map((proposal) => ( + + ))} +
+
+
+ ); +} diff --git a/apps/desktop/src/session/index.tsx b/apps/desktop/src/session/index.tsx index 98c4f4ec4a2..c5f735e1380 100644 --- a/apps/desktop/src/session/index.tsx +++ b/apps/desktop/src/session/index.tsx @@ -16,6 +16,7 @@ import { } from "./components/note-input/header"; import { SearchProvider } from "./components/note-input/search/context"; import { OuterHeader } from "./components/outer-header"; +import { PendingProposalsBanner } from "./components/pending-proposals-banner"; import { SessionSurface } from "./components/session-surface"; import { computeCurrentNoteTab, @@ -349,6 +350,9 @@ function TabContentNoteInner({ } >
+ {!lockOverlay ? ( + + ) : null} {showTopAudioPlayer && !lockOverlay ? (
({ + applySessionProposal: vi.fn(), + declineSessionProposal: vi.fn(), + close: vi.fn(), + openNew: vi.fn(), + tabs: [] as Array>, + invalidateQueries: vi.fn(), +})); + +vi.mock("~/session/queries", () => ({ + applySessionProposal: mocks.applySessionProposal, + declineSessionProposal: mocks.declineSessionProposal, +})); + +vi.mock("~/store/zustand/tabs", () => ({ + useTabs: { + getState: () => ({ + tabs: mocks.tabs, + close: mocks.close, + openNew: mocks.openNew, + }), + }, +})); + +import { + applyProposalReview, + closeProposalReviewTab, + declineProposalReview, + openProposalReview, + proposalKindLabel, + shouldAutoDeclineProposal, +} from "./proposal-review"; + +import { usePendingEditStore } from "~/chat/tools/pending-edit-store"; + +describe("proposal review helpers", () => { + beforeEach(() => { + vi.clearAllMocks(); + usePendingEditStore.setState({ edits: new Map() }); + mocks.tabs = [ + { + type: "edit", + requestId: "proposal-1", + slotId: "slot-1", + }, + ]; + mocks.applySessionProposal.mockResolvedValue(undefined); + mocks.declineSessionProposal.mockResolvedValue(undefined); + }); + + it("does not auto-decline CLI or MCP proposals", () => { + expect(shouldAutoDeclineProposal("chat")).toBe(true); + expect(shouldAutoDeclineProposal(undefined)).toBe(true); + expect(shouldAutoDeclineProposal("cli")).toBe(false); + expect(shouldAutoDeclineProposal("mcp")).toBe(false); + }); + + it("labels memo and summary proposal kinds", () => { + expect(proposalKindLabel("memo_replace")).toBe("memo"); + expect(proposalKindLabel("summary_replace")).toBe("summary"); + }); + + it("opens and closes the review tab by request id", () => { + openProposalReview("proposal-1"); + expect(mocks.openNew).toHaveBeenCalledWith({ + type: "edit", + requestId: "proposal-1", + }); + + closeProposalReviewTab("proposal-1"); + expect(mocks.close).toHaveBeenCalledWith(mocks.tabs[0]); + }); + + it("applies, resolves waiters, and closes the review tab", async () => { + const resolve = vi.fn(); + usePendingEditStore.getState().addEdit({ + requestId: "proposal-1", + sessionId: "session-1", + target: { kind: "memo" }, + currentContent: "", + proposedContent: "Agenda", + source: "chat", + resolve, + }); + + await applyProposalReview("proposal-1", { + invalidateQueries: mocks.invalidateQueries, + } as never); + + expect(mocks.applySessionProposal).toHaveBeenCalledWith("proposal-1"); + expect(resolve).toHaveBeenCalledWith(true); + expect(mocks.close).toHaveBeenCalledWith(mocks.tabs[0]); + expect(mocks.invalidateQueries).toHaveBeenCalledWith({ + queryKey: ["session-proposals"], + }); + expect(usePendingEditStore.getState().edits.has("proposal-1")).toBe(false); + }); + + it("declines without applying the meeting write", async () => { + const resolve = vi.fn(); + usePendingEditStore.getState().addEdit({ + requestId: "proposal-1", + sessionId: "session-1", + target: { kind: "memo" }, + currentContent: "", + proposedContent: "Agenda", + source: "cli", + resolve, + }); + + await declineProposalReview("proposal-1"); + + expect(mocks.declineSessionProposal).toHaveBeenCalledWith("proposal-1"); + expect(resolve).toHaveBeenCalledWith(false); + expect(mocks.applySessionProposal).not.toHaveBeenCalled(); + }); +}); diff --git a/apps/desktop/src/session/proposal-review.ts b/apps/desktop/src/session/proposal-review.ts new file mode 100644 index 00000000000..43982709f30 --- /dev/null +++ b/apps/desktop/src/session/proposal-review.ts @@ -0,0 +1,62 @@ +import type { QueryClient } from "@tanstack/react-query"; + +import { usePendingEditStore } from "~/chat/tools/pending-edit-store"; +import { + applySessionProposal, + declineSessionProposal, +} from "~/session/queries"; +import type { SessionProposalRecord } from "~/session/queries/proposals"; +import { useTabs } from "~/store/zustand/tabs"; + +export function shouldAutoDeclineProposal(source?: string): boolean { + return source !== "cli" && source !== "mcp"; +} + +export function closeProposalReviewTab(requestId: string): void { + const tabs = useTabs.getState(); + const reviewTab = tabs.tabs.find( + (tab) => tab.type === "edit" && tab.requestId === requestId, + ); + if (reviewTab) { + tabs.close(reviewTab); + } +} + +export function openProposalReview(requestId: string): void { + useTabs.getState().openNew({ type: "edit", requestId }); +} + +export async function applyProposalReview( + requestId: string, + queryClient?: QueryClient, +): Promise { + await applySessionProposal(requestId); + usePendingEditStore.getState().resolveEdit(requestId, true); + closeProposalReviewTab(requestId); + await invalidateSessionProposals(queryClient); +} + +export async function declineProposalReview( + requestId: string, + queryClient?: QueryClient, +): Promise { + await declineSessionProposal(requestId); + usePendingEditStore.getState().resolveEdit(requestId, false); + closeProposalReviewTab(requestId); + await invalidateSessionProposals(queryClient); +} + +export function proposalKindLabel( + kind: SessionProposalRecord["kind"], +): "memo" | "summary" { + return kind === "memo_replace" ? "memo" : "summary"; +} + +async function invalidateSessionProposals( + queryClient: QueryClient | undefined, +): Promise { + if (!queryClient) { + return; + } + await queryClient.invalidateQueries({ queryKey: ["session-proposals"] }); +} diff --git a/apps/desktop/src/session/queries.test.ts b/apps/desktop/src/session/queries.test.ts index 711c6659aff..e8e94b861d6 100644 --- a/apps/desktop/src/session/queries.test.ts +++ b/apps/desktop/src/session/queries.test.ts @@ -28,12 +28,15 @@ vi.mock("~/db", () => ({ import { addSessionParticipant, + applySessionProposal, buildSessionTombstoneStatements, createSession, + declineSessionProposal, deleteEnhancedNote, getOrCreateSessionForEventId, isSessionEmpty, loadSessionEvent, + persistChatSessionProposal, removeSessionParticipant, restoreDeletedSession, softDeleteSession, @@ -475,4 +478,111 @@ describe("session SQLite operations", () => { expect(sql).toContain(table); } }); + + it("persists a chat proposal against the current document timestamp", async () => { + mocks.execute.mockResolvedValueOnce([ + { updated_at: "2026-08-26T00:00:00Z" }, + ]); + + await persistChatSessionProposal({ + id: "proposal-1", + sessionId: "session-1", + kind: "summary_replace", + targetId: "summary-1", + currentMarkdown: "Current", + proposedMarkdown: "Proposed", + }); + + const statement = mocks.executeTransaction.mock.calls[0][0][0]; + expect(statement.sql).toContain("INSERT INTO session_proposals"); + expect(statement.params).toEqual([ + "proposal-1", + "session-1", + "summary_replace", + "summary-1", + "2026-08-26T00:00:00Z", + "Current", + "Proposed", + "chat", + ]); + }); + + it("applies a pending summary proposal and marks it applied", async () => { + mocks.execute + .mockResolvedValueOnce([ + { + id: "proposal-1", + session_id: "session-1", + kind: "summary_replace", + target_id: "summary-1", + base_updated_at: "2026-08-26T00:00:00Z", + current_markdown: "Current", + proposed_markdown: "Proposed", + status: "pending", + source: "cli", + created_at: "2026-08-26T00:00:00Z", + updated_at: "2026-08-26T00:00:00Z", + }, + ]) + .mockResolvedValueOnce([{ updated_at: "2026-08-26T00:00:00Z" }]); + + await applySessionProposal("proposal-1"); + + const writes = mocks.executeTransaction.mock.calls.map( + (call) => call[0] as Array<{ sql: string; params: unknown[] }>, + ); + expect(writes[0][0].sql).toContain("UPDATE session_documents"); + expect(writes[1][0].sql).toContain("UPDATE session_proposals"); + expect(writes[1][0].params[0]).toBe("applied"); + expect(writes[1][0].params[2]).toBe("proposal-1"); + }); + + it("rejects a stale proposal instead of writing the meeting", async () => { + mocks.execute + .mockResolvedValueOnce([ + { + id: "proposal-1", + session_id: "session-1", + kind: "memo_replace", + target_id: "session-1", + base_updated_at: "2026-08-26T00:00:00Z", + current_markdown: "Current", + proposed_markdown: "Proposed", + status: "pending", + source: "mcp", + created_at: "2026-08-26T00:00:00Z", + updated_at: "2026-08-26T00:00:00Z", + }, + ]) + .mockResolvedValueOnce([{ updated_at: "2026-08-26T01:00:00Z" }]); + + await expect(applySessionProposal("proposal-1")).rejects.toThrow( + "This proposal is stale. The meeting changed after it was created.", + ); + expect(mocks.executeTransaction).not.toHaveBeenCalled(); + }); + + it("declines only pending proposals", async () => { + mocks.execute.mockResolvedValueOnce([ + { + id: "proposal-1", + session_id: "session-1", + kind: "summary_replace", + target_id: "summary-1", + base_updated_at: "2026-08-26T00:00:00Z", + current_markdown: "Current", + proposed_markdown: "Proposed", + status: "pending", + source: "cli", + created_at: "2026-08-26T00:00:00Z", + updated_at: "2026-08-26T00:00:00Z", + }, + ]); + + await declineSessionProposal("proposal-1"); + + const statement = mocks.executeTransaction.mock.calls[0][0][0]; + expect(statement.sql).toContain("UPDATE session_proposals"); + expect(statement.params[0]).toBe("declined"); + }); }); diff --git a/apps/desktop/src/session/queries.ts b/apps/desktop/src/session/queries.ts index 82d906e2a88..a5ec6a74ba5 100644 --- a/apps/desktop/src/session/queries.ts +++ b/apps/desktop/src/session/queries.ts @@ -17,6 +17,17 @@ export { getOrCreateSessionForEventId, } from "./queries/creation"; export { useFolderPaths } from "./queries/folders"; +export { + applySessionProposal, + declineSessionProposal, + insertSessionProposal, + loadPendingSessionProposals, + loadSessionProposal, + persistChatSessionProposal, + sessionProposalsQueryKey, + usePendingSessionProposals, +} from "./queries/proposals"; +export type { SessionProposalRecord } from "./queries/proposals"; export { addSessionParticipant, removeSessionParticipant, diff --git a/apps/desktop/src/session/queries/proposals.ts b/apps/desktop/src/session/queries/proposals.ts new file mode 100644 index 00000000000..e5e19c7365c --- /dev/null +++ b/apps/desktop/src/session/queries/proposals.ts @@ -0,0 +1,243 @@ +import { useQuery } from "@tanstack/react-query"; + +import { md2json } from "@anlg/editor/markdown"; + +import { executeTransaction, liveQueryClient } from "~/db"; +import { enqueueDatabaseWrite } from "~/db/write-queue"; +import { updateEnhancedNoteContent } from "~/session/queries/enhanced-notes"; +import { updateSession } from "~/session/queries/sessions"; + +export type SessionProposalRecord = { + id: string; + sessionId: string; + kind: "summary_replace" | "memo_replace" | string; + targetId: string; + baseUpdatedAt: string; + currentMarkdown: string; + proposedMarkdown: string; + status: "pending" | "applied" | "declined" | string; + source: string; + createdAt: string; + updatedAt: string; +}; + +type ProposalSqlRow = { + id: string; + session_id: string; + kind: string; + target_id: string; + base_updated_at: string; + current_markdown: string; + proposed_markdown: string; + status: string; + source: string; + created_at: string; + updated_at: string; +}; + +const PROPOSAL_COLUMNS = ` + SELECT + id, + session_id, + kind, + target_id, + base_updated_at, + current_markdown, + proposed_markdown, + status, + source, + created_at, + updated_at + FROM session_proposals +`; + +export async function insertSessionProposal(input: { + id: string; + sessionId: string; + kind: "summary_replace" | "memo_replace"; + targetId: string; + baseUpdatedAt: string; + currentMarkdown: string; + proposedMarkdown: string; + source: string; +}): Promise { + await enqueueDatabaseWrite(`session:${input.sessionId}`, async () => { + await executeTransaction([ + { + sql: ` + INSERT INTO session_proposals ( + id, session_id, kind, target_id, base_updated_at, + current_markdown, proposed_markdown, status, source + ) VALUES (?, ?, ?, ?, ?, ?, ?, 'pending', ?) + `, + params: [ + input.id, + input.sessionId, + input.kind, + input.targetId, + input.baseUpdatedAt, + input.currentMarkdown, + input.proposedMarkdown, + input.source, + ], + }, + ]); + }); +} + +export async function loadSessionProposal( + proposalId: string, +): Promise { + const rows = await liveQueryClient.execute( + `${PROPOSAL_COLUMNS} + WHERE id = ? + LIMIT 1`, + [proposalId], + ); + return rows[0] ? mapProposal(rows[0]) : null; +} + +export async function loadPendingSessionProposals( + sessionId: string, +): Promise { + const rows = await liveQueryClient.execute( + `${PROPOSAL_COLUMNS} + WHERE session_id = ? AND status = 'pending' + ORDER BY created_at DESC, id DESC`, + [sessionId], + ); + return rows.map(mapProposal); +} + +export function sessionProposalsQueryKey(sessionId: string) { + return ["session-proposals", sessionId] as const; +} + +export function usePendingSessionProposals( + sessionId: string, +): SessionProposalRecord[] { + const { data = [] } = useQuery({ + queryKey: sessionProposalsQueryKey(sessionId), + queryFn: () => loadPendingSessionProposals(sessionId), + enabled: Boolean(sessionId), + refetchOnWindowFocus: true, + refetchInterval: 4000, + }); + return sessionId ? data : []; +} + +export async function persistChatSessionProposal(input: { + id: string; + sessionId: string; + kind: "summary_replace" | "memo_replace"; + targetId: string; + currentMarkdown: string; + proposedMarkdown: string; +}): Promise { + const baseUpdatedAt = + (await loadTargetUpdatedAt({ + targetId: input.targetId, + sessionId: input.sessionId, + })) ?? ""; + await insertSessionProposal({ + ...input, + baseUpdatedAt, + source: "chat", + }); +} + +export async function applySessionProposal(proposalId: string): Promise { + const proposal = await loadSessionProposal(proposalId); + if (!proposal) { + throw new Error("Proposal not found"); + } + if (proposal.status === "applied") { + return; + } + if (proposal.status !== "pending") { + throw new Error(`Proposal is ${proposal.status}`); + } + + const currentUpdatedAt = await loadTargetUpdatedAt(proposal); + if (currentUpdatedAt && currentUpdatedAt !== proposal.baseUpdatedAt) { + throw new Error( + "This proposal is stale. The meeting changed after it was created.", + ); + } + + const json = JSON.stringify(md2json(proposal.proposedMarkdown)); + if (proposal.kind === "memo_replace") { + await updateSession(proposal.sessionId, { raw_md: json }); + } else { + await updateEnhancedNoteContent( + proposal.targetId, + proposal.sessionId, + json, + ); + } + await setProposalStatus(proposal.id, proposal.sessionId, "applied"); +} + +export async function declineSessionProposal( + proposalId: string, +): Promise { + const proposal = await loadSessionProposal(proposalId); + if (!proposal || proposal.status !== "pending") { + return; + } + await setProposalStatus(proposal.id, proposal.sessionId, "declined"); +} + +async function setProposalStatus( + proposalId: string, + sessionId: string, + status: "applied" | "declined", +): Promise { + await enqueueDatabaseWrite(`session:${sessionId}`, async () => { + const now = new Date().toISOString(); + await executeTransaction([ + { + sql: ` + UPDATE session_proposals + SET status = ?, updated_at = ? + WHERE id = ? AND status = 'pending' + `, + params: [status, now, proposalId], + }, + ]); + }); +} + +async function loadTargetUpdatedAt(proposal: { + targetId: string; + sessionId: string; +}): Promise { + const rows = await liveQueryClient.execute<{ updated_at: string }>( + ` + SELECT updated_at + FROM session_documents + WHERE id = ? + AND session_id = ? + AND deleted_at IS NULL + LIMIT 1 + `, + [proposal.targetId || proposal.sessionId, proposal.sessionId], + ); + return rows[0]?.updated_at ?? null; +} + +function mapProposal(row: ProposalSqlRow): SessionProposalRecord { + return { + id: row.id, + sessionId: row.session_id, + kind: row.kind, + targetId: row.target_id, + baseUpdatedAt: row.base_updated_at, + currentMarkdown: row.current_markdown, + proposedMarkdown: row.proposed_markdown, + status: row.status, + source: row.source, + createdAt: row.created_at, + updatedAt: row.updated_at, + }; +} diff --git a/crates/agent-access/Cargo.toml b/crates/agent-access/Cargo.toml index 9d5cc1d8ced..a9a6d06114e 100644 --- a/crates/agent-access/Cargo.toml +++ b/crates/agent-access/Cargo.toml @@ -15,6 +15,7 @@ sqlx = { workspace = true, features = ["runtime-tokio", "sqlite"] } thiserror = { workspace = true } tokio = { workspace = true, features = ["macros"] } utoipa = { workspace = true } +uuid = { workspace = true, features = ["v4"] } [dev-dependencies] anlg-db-core = { workspace = true } diff --git a/crates/agent-access/src/lib.rs b/crates/agent-access/src/lib.rs index 05af0e0f0da..58d5401e72d 100644 --- a/crates/agent-access/src/lib.rs +++ b/crates/agent-access/src/lib.rs @@ -1,11 +1,19 @@ #![forbid(unsafe_code)] +mod proposals; + use schemars::JsonSchema; use serde::{Deserialize, Serialize}; use serde_json::Value; use specta::Type; use sqlx::SqlitePool; +pub use proposals::{ + CreateProposalInput, DeclineProposalInput, GetProposalInput, ListProposalsInput, Proposal, + ProposalPage, create_proposal, decline_proposal, get_proposal, list_proposals, + proposal_unified_diff, +}; + pub const DEFAULT_LIST_LIMIT: u32 = 20; pub const MAX_LIST_LIMIT: u32 = 200; pub const DEFAULT_TRANSCRIPT_LIMIT: u32 = 200; @@ -15,6 +23,10 @@ pub const MAX_TRANSCRIPT_LIMIT: u32 = 500; pub enum Error { #[error("{0} not found")] NotFound(String), + #[error("{0}")] + Invalid(String), + #[error("{0}")] + Conflict(String), #[error("{action} failed: {source}")] Database { action: &'static str, @@ -643,7 +655,7 @@ fn push_section(sections: &mut Vec, title: &str, body: &str) { } } -fn pagination( +pub(crate) fn pagination( offset: u32, limit: u32, returned: usize, diff --git a/crates/agent-access/src/proposals.rs b/crates/agent-access/src/proposals.rs new file mode 100644 index 00000000000..a6483c68804 --- /dev/null +++ b/crates/agent-access/src/proposals.rs @@ -0,0 +1,511 @@ +use schemars::JsonSchema; +use serde::{Deserialize, Serialize}; +use specta::Type; +use sqlx::SqlitePool; + +use crate::{DEFAULT_LIST_LIMIT, Error, MAX_LIST_LIMIT, Pagination, Result, pagination}; + +pub const DEFAULT_PROPOSAL_LIST_LIMIT: u32 = DEFAULT_LIST_LIMIT; +pub const MAX_PROPOSAL_LIST_LIMIT: u32 = MAX_LIST_LIMIT; + +const KIND_MEMO: &str = "memo_replace"; +const KIND_SUMMARY: &str = "summary_replace"; +const STATUS_PENDING: &str = "pending"; +const STATUS_DECLINED: &str = "declined"; + +#[derive( + Debug, Clone, Default, PartialEq, Eq, Serialize, Deserialize, JsonSchema, Type, utoipa::ToSchema, +)] +#[serde(rename_all = "snake_case")] +pub struct CreateProposalInput { + #[schemars(description = "Anarlog meeting id")] + pub meeting_id: String, + #[schemars(description = "summary_replace or memo_replace")] + pub kind: String, + #[schemars(description = "Summary document id. Required when multiple summaries exist.")] + pub target_id: Option, + #[schemars(description = "Complete replacement markdown")] + pub content: String, + #[schemars(description = "cli, mcp, or chat")] + pub source: Option, +} + +#[derive( + Debug, Clone, Default, PartialEq, Eq, Serialize, Deserialize, JsonSchema, Type, utoipa::ToSchema, +)] +#[serde(rename_all = "snake_case")] +pub struct ListProposalsInput { + #[schemars(description = "Limit results to one meeting")] + pub meeting_id: Option, + #[schemars(description = "pending, applied, or declined. Defaults to pending.")] + pub status: Option, + #[schemars(description = "Maximum results; defaults to 20 and is capped at 200")] + #[schemars(range(min = 1, max = 200))] + pub limit: Option, + #[schemars(description = "Number of results to skip; defaults to 0")] + pub offset: Option, +} + +#[derive( + Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema, Type, utoipa::ToSchema, +)] +#[serde(rename_all = "snake_case")] +pub struct GetProposalInput { + #[schemars(description = "Proposal id")] + pub proposal_id: String, +} + +#[derive( + Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema, Type, utoipa::ToSchema, +)] +#[serde(rename_all = "snake_case")] +pub struct DeclineProposalInput { + #[schemars(description = "Proposal id")] + pub proposal_id: String, +} + +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Type, utoipa::ToSchema)] +#[serde(rename_all = "snake_case")] +pub struct Proposal { + pub id: String, + pub meeting_id: String, + pub kind: String, + pub target_id: String, + pub base_updated_at: String, + pub current_markdown: String, + pub proposed_markdown: String, + pub status: String, + pub source: String, + pub created_at: String, + pub updated_at: String, + pub diff: String, +} + +#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Type, utoipa::ToSchema)] +#[serde(rename_all = "snake_case")] +pub struct ProposalPage { + pub proposals: Vec, + pub pagination: Pagination, +} + +pub async fn create_proposal(pool: &SqlitePool, input: CreateProposalInput) -> Result { + let kind = normalize_kind(&input.kind)?; + let content = input.content.trim().to_string(); + if content.is_empty() { + return Err(Error::Invalid("proposal content is empty".to_string())); + } + let source = normalize_source(input.source.as_deref()); + let session = anlg_db_app::get_session(pool, &input.meeting_id) + .await + .map_err(|source| Error::Database { + action: "load meeting", + source, + })? + .ok_or_else(|| Error::NotFound(format!("meeting '{}'", input.meeting_id)))?; + + let target = resolve_target(pool, &session.id, kind, input.target_id.as_deref()).await?; + let id = uuid::Uuid::new_v4().to_string(); + let row = anlg_db_app::insert_session_proposal( + pool, + anlg_db_app::InsertSessionProposal { + id: &id, + workspace_id: &session.workspace_id, + session_id: &session.id, + kind, + target_id: &target.id, + base_updated_at: &target.updated_at, + current_markdown: &target.markdown, + proposed_markdown: &content, + source: &source, + }, + ) + .await + .map_err(|source| Error::Database { + action: "create proposal", + source, + })?; + + Ok(Proposal::from(row)) +} + +pub async fn list_proposals(pool: &SqlitePool, input: ListProposalsInput) -> Result { + if let Some(meeting_id) = input.meeting_id.as_deref() { + let exists = anlg_db_app::get_session(pool, meeting_id) + .await + .map_err(|source| Error::Database { + action: "load meeting", + source, + })? + .is_some(); + if !exists { + return Err(Error::NotFound(format!("meeting '{meeting_id}'"))); + } + } + + let status = match input + .status + .as_deref() + .map(str::trim) + .filter(|value| !value.is_empty()) + { + None => Some(STATUS_PENDING.to_string()), + Some("all") => None, + Some(status) => Some(normalize_status(status)?.to_string()), + }; + let limit = input + .limit + .unwrap_or(DEFAULT_PROPOSAL_LIST_LIMIT) + .clamp(1, MAX_PROPOSAL_LIST_LIMIT); + let offset = input.offset.unwrap_or(0); + let mut rows = anlg_db_app::list_session_proposals( + pool, + input.meeting_id.as_deref(), + status.as_deref(), + limit + 1, + offset, + ) + .await + .map_err(|source| Error::Database { + action: "list proposals", + source, + })?; + let has_more = rows.len() > limit as usize; + rows.truncate(limit as usize); + let proposals = rows.into_iter().map(Proposal::from).collect::>(); + Ok(ProposalPage { + pagination: pagination(offset, limit, proposals.len(), None, has_more), + proposals, + }) +} + +pub async fn get_proposal(pool: &SqlitePool, input: GetProposalInput) -> Result { + load_proposal(pool, &input.proposal_id).await +} + +pub async fn decline_proposal(pool: &SqlitePool, input: DeclineProposalInput) -> Result { + let current = load_proposal(pool, &input.proposal_id).await?; + if current.status != STATUS_PENDING { + return Err(Error::Conflict(format!( + "proposal '{}' is {}", + current.id, current.status + ))); + } + + let row = anlg_db_app::update_session_proposal_status( + pool, + &input.proposal_id, + STATUS_PENDING, + STATUS_DECLINED, + ) + .await + .map_err(|source| Error::Database { + action: "decline proposal", + source, + })? + .ok_or_else(|| Error::NotFound(format!("proposal '{}'", input.proposal_id)))?; + if row.status != STATUS_DECLINED { + return Err(Error::Conflict(format!( + "proposal '{}' is {}", + row.id, row.status + ))); + } + Ok(Proposal::from(row)) +} + +pub fn proposal_unified_diff(current: &str, proposed: &str) -> String { + if current == proposed { + return "No changes.\n".to_string(); + } + + let mut diff = String::from("--- current\n+++ proposed\n"); + let current_lines = current.lines().collect::>(); + let proposed_lines = proposed.lines().collect::>(); + let max = current_lines.len().max(proposed_lines.len()); + for index in 0..max { + match (current_lines.get(index), proposed_lines.get(index)) { + (Some(left), Some(right)) if left == right => { + diff.push(' '); + diff.push_str(left); + diff.push('\n'); + } + (Some(left), Some(right)) => { + diff.push('-'); + diff.push_str(left); + diff.push('\n'); + diff.push('+'); + diff.push_str(right); + diff.push('\n'); + } + (Some(left), None) => { + diff.push('-'); + diff.push_str(left); + diff.push('\n'); + } + (None, Some(right)) => { + diff.push('+'); + diff.push_str(right); + diff.push('\n'); + } + (None, None) => {} + } + } + diff +} + +struct TargetSnapshot { + id: String, + markdown: String, + updated_at: String, +} + +async fn resolve_target( + pool: &SqlitePool, + meeting_id: &str, + kind: &str, + target_id: Option<&str>, +) -> Result { + let meeting = crate::get_meeting( + pool, + crate::GetMeetingInput { + meeting_id: meeting_id.to_string(), + }, + ) + .await?; + + if kind == KIND_MEMO { + let note = meeting + .note + .ok_or_else(|| Error::NotFound(format!("note for meeting '{meeting_id}'")))?; + return Ok(TargetSnapshot { + id: note.id, + markdown: note.markdown, + updated_at: note.updated_at, + }); + } + + let summaries = meeting.summaries; + if summaries.is_empty() { + return Err(Error::NotFound(format!( + "summary for meeting '{meeting_id}'" + ))); + } + + if let Some(target_id) = target_id.map(str::trim).filter(|value| !value.is_empty()) { + let summary = summaries + .iter() + .find(|document| document.id == target_id) + .ok_or_else(|| { + Error::NotFound(format!("summary '{target_id}' for meeting '{meeting_id}'")) + })?; + return Ok(TargetSnapshot { + id: summary.id.clone(), + markdown: summary.markdown.clone(), + updated_at: summary.updated_at.clone(), + }); + } + + if summaries.len() > 1 { + return Err(Error::Invalid( + "multiple summaries exist; specify target_id".to_string(), + )); + } + + let summary = &summaries[0]; + Ok(TargetSnapshot { + id: summary.id.clone(), + markdown: summary.markdown.clone(), + updated_at: summary.updated_at.clone(), + }) +} + +async fn load_proposal(pool: &SqlitePool, proposal_id: &str) -> Result { + anlg_db_app::get_session_proposal(pool, proposal_id) + .await + .map_err(|source| Error::Database { + action: "load proposal", + source, + })? + .map(Proposal::from) + .ok_or_else(|| Error::NotFound(format!("proposal '{proposal_id}'"))) +} + +fn normalize_kind(kind: &str) -> Result<&'static str> { + match kind.trim() { + "summary" | KIND_SUMMARY => Ok(KIND_SUMMARY), + "memo" | "note" | KIND_MEMO => Ok(KIND_MEMO), + other => Err(Error::Invalid(format!( + "unsupported proposal kind '{other}'" + ))), + } +} + +fn normalize_status(status: &str) -> Result<&'static str> { + match status { + STATUS_PENDING | "applied" | STATUS_DECLINED => Ok(match status { + STATUS_PENDING => STATUS_PENDING, + "applied" => "applied", + _ => STATUS_DECLINED, + }), + other => Err(Error::Invalid(format!( + "unsupported proposal status '{other}'" + ))), + } +} + +fn normalize_source(source: Option<&str>) -> String { + match source.map(str::trim).filter(|value| !value.is_empty()) { + Some("mcp") => "mcp".to_string(), + Some("chat") => "chat".to_string(), + _ => "cli".to_string(), + } +} + +impl From for Proposal { + fn from(value: anlg_db_app::SessionProposalRow) -> Self { + let diff = proposal_unified_diff(&value.current_markdown, &value.proposed_markdown); + Self { + id: value.id, + meeting_id: value.session_id, + kind: value.kind, + target_id: value.target_id, + base_updated_at: value.base_updated_at, + current_markdown: value.current_markdown, + proposed_markdown: value.proposed_markdown, + status: value.status, + source: value.source, + created_at: value.created_at, + updated_at: value.updated_at, + diff, + } + } +} + +#[cfg(test)] +mod tests { + use super::*; + + async fn test_db() -> anlg_db_core::Db { + let db = anlg_db_core::Db::connect_memory_plain().await.unwrap(); + anlg_db_app::prepare_schema(&db).await.unwrap(); + db + } + + async fn seed_meeting(db: &anlg_db_core::Db) { + sqlx::query( + "INSERT INTO sessions (id, title, started_at) VALUES ('meeting-1', 'Planning', '2026-07-13')", + ) + .execute(db.pool()) + .await + .unwrap(); + sqlx::query( + "INSERT INTO session_documents + (id, session_id, kind, body_format, body, title, updated_at) + VALUES + ('meeting-1', 'meeting-1', 'note', 'markdown', 'Launch decision', 'Notes', '2026-07-13T00:00:00Z'), + ('summary-1', 'meeting-1', 'summary', 'markdown', 'Ship Tuesday', 'Summary', '2026-07-13T00:00:00Z')", + ) + .execute(db.pool()) + .await + .unwrap(); + } + + #[test] + fn unified_diff_marks_changed_lines() { + assert_eq!( + proposal_unified_diff("alpha\nbeta", "alpha\ngamma"), + "--- current\n+++ proposed\n alpha\n-beta\n+gamma\n" + ); + } + + #[tokio::test] + async fn create_list_and_decline_summary_proposal() { + let db = test_db().await; + seed_meeting(&db).await; + + let created = create_proposal( + db.pool(), + CreateProposalInput { + meeting_id: "meeting-1".to_string(), + kind: "summary".to_string(), + target_id: None, + content: "Ship Wednesday".to_string(), + source: Some("mcp".to_string()), + }, + ) + .await + .unwrap(); + + assert_eq!(created.kind, KIND_SUMMARY); + assert_eq!(created.target_id, "summary-1"); + assert_eq!(created.status, STATUS_PENDING); + assert_eq!(created.source, "mcp"); + assert!(created.diff.contains("-Ship Tuesday")); + assert!(created.diff.contains("+Ship Wednesday")); + + let page = list_proposals( + db.pool(), + ListProposalsInput { + meeting_id: Some("meeting-1".to_string()), + ..Default::default() + }, + ) + .await + .unwrap(); + assert_eq!(page.proposals.len(), 1); + assert_eq!(page.proposals[0].id, created.id); + + let declined = decline_proposal( + db.pool(), + DeclineProposalInput { + proposal_id: created.id.clone(), + }, + ) + .await + .unwrap(); + assert_eq!(declined.status, STATUS_DECLINED); + + let conflict = decline_proposal( + db.pool(), + DeclineProposalInput { + proposal_id: created.id, + }, + ) + .await + .unwrap_err(); + assert!(matches!(conflict, Error::Conflict(_))); + } + + #[tokio::test] + async fn create_rejects_empty_content_and_unknown_meeting() { + let db = test_db().await; + seed_meeting(&db).await; + + let empty = create_proposal( + db.pool(), + CreateProposalInput { + meeting_id: "meeting-1".to_string(), + kind: "memo".to_string(), + target_id: None, + content: " ".to_string(), + source: None, + }, + ) + .await + .unwrap_err(); + assert!(matches!(empty, Error::Invalid(_))); + + let missing = create_proposal( + db.pool(), + CreateProposalInput { + meeting_id: "missing".to_string(), + kind: "memo".to_string(), + target_id: None, + content: "Agenda".to_string(), + source: None, + }, + ) + .await + .unwrap_err(); + assert!(matches!(missing, Error::NotFound(_))); + } +} diff --git a/crates/db-app/migrations/20260826120000_session_proposals.sql b/crates/db-app/migrations/20260826120000_session_proposals.sql new file mode 100644 index 00000000000..3fc7405421d --- /dev/null +++ b/crates/db-app/migrations/20260826120000_session_proposals.sql @@ -0,0 +1,22 @@ +-- Local proposal inbox for CLI, MCP, and in-app chat. +-- Older builds ignore this table. Not CloudSync-enabled. +CREATE TABLE IF NOT EXISTS session_proposals ( + id TEXT PRIMARY KEY NOT NULL, + workspace_id TEXT NOT NULL DEFAULT '', + session_id TEXT NOT NULL DEFAULT '', + kind TEXT NOT NULL DEFAULT '', + target_id TEXT NOT NULL DEFAULT '', + base_updated_at TEXT NOT NULL DEFAULT '', + current_markdown TEXT NOT NULL DEFAULT '', + proposed_markdown TEXT NOT NULL DEFAULT '', + status TEXT NOT NULL DEFAULT 'pending', + source TEXT NOT NULL DEFAULT '', + created_at TEXT NOT NULL DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')), + updated_at TEXT NOT NULL DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')) +) STRICT; + +CREATE INDEX IF NOT EXISTS idx_session_proposals_session_status + ON session_proposals (session_id, status, created_at); + +CREATE INDEX IF NOT EXISTS idx_session_proposals_status_created + ON session_proposals (status, created_at); diff --git a/crates/db-app/src/lib.rs b/crates/db-app/src/lib.rs index 94939bf3a32..5fe448794b9 100644 --- a/crates/db-app/src/lib.rs +++ b/crates/db-app/src/lib.rs @@ -394,6 +394,11 @@ pub const APP_MIGRATION_STEPS: &[anlg_db_migrate::MigrationStep] = &[ scope: anlg_db_migrate::MigrationScope::Plain, sql: include_str!("../migrations/20260821140000_session_consent_evidence.sql"), }, + anlg_db_migrate::MigrationStep { + id: "20260826120000_session_proposals", + scope: anlg_db_migrate::MigrationScope::Plain, + sql: include_str!("../migrations/20260826120000_session_proposals.sql"), + }, ]; pub fn schema() -> anlg_db_migrate::DbSchema { diff --git a/crates/db-app/src/schema_tests/migrations.rs b/crates/db-app/src/schema_tests/migrations.rs index 4ea2141e2f5..4fd64bde59f 100644 --- a/crates/db-app/src/schema_tests/migrations.rs +++ b/crates/db-app/src/schema_tests/migrations.rs @@ -123,6 +123,7 @@ async fn migrations_apply_cleanly() { "session_documents", "session_participant_consent", "session_participants", + "session_proposals", "session_share_activation", "session_share_sync_state", "session_tags", diff --git a/crates/db-app/src/session_ops.rs b/crates/db-app/src/session_ops.rs index ec65a62cf20..b85dff545c9 100644 --- a/crates/db-app/src/session_ops.rs +++ b/crates/db-app/src/session_ops.rs @@ -2,7 +2,7 @@ use sqlx::{QueryBuilder, Sqlite, SqlitePool}; use crate::{ ListSessions, SessionActionItemRow, SessionDocumentRow, SessionListItem, SessionParticipantRow, - SessionRow, SessionTranscriptRow, + SessionProposalRow, SessionRow, SessionTranscriptRow, }; pub const MAX_SESSION_LIST_LIMIT: u32 = 500; @@ -234,6 +234,116 @@ pub async fn list_recurring_sessions( .await } +const SESSION_PROPOSAL_COLUMNS: &str = " + SELECT id, workspace_id, session_id, kind, target_id, base_updated_at, + current_markdown, proposed_markdown, status, source, created_at, updated_at + FROM session_proposals +"; + +pub struct InsertSessionProposal<'a> { + pub id: &'a str, + pub workspace_id: &'a str, + pub session_id: &'a str, + pub kind: &'a str, + pub target_id: &'a str, + pub base_updated_at: &'a str, + pub current_markdown: &'a str, + pub proposed_markdown: &'a str, + pub source: &'a str, +} + +pub async fn insert_session_proposal( + pool: &SqlitePool, + input: InsertSessionProposal<'_>, +) -> Result { + sqlx::query( + "INSERT INTO session_proposals ( + id, workspace_id, session_id, kind, target_id, base_updated_at, + current_markdown, proposed_markdown, status, source + ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, 'pending', ?)", + ) + .bind(input.id) + .bind(input.workspace_id) + .bind(input.session_id) + .bind(input.kind) + .bind(input.target_id) + .bind(input.base_updated_at) + .bind(input.current_markdown) + .bind(input.proposed_markdown) + .bind(input.source) + .execute(pool) + .await?; + + get_session_proposal(pool, input.id) + .await? + .ok_or(sqlx::Error::RowNotFound) +} + +pub async fn get_session_proposal( + pool: &SqlitePool, + proposal_id: &str, +) -> Result, sqlx::Error> { + let mut query = QueryBuilder::::new(SESSION_PROPOSAL_COLUMNS); + query.push(" WHERE id = "); + query.push_bind(proposal_id); + query.push(" LIMIT 1"); + query + .build_query_as::() + .fetch_optional(pool) + .await +} + +pub async fn list_session_proposals( + pool: &SqlitePool, + session_id: Option<&str>, + status: Option<&str>, + limit: u32, + offset: u32, +) -> Result, sqlx::Error> { + let mut query = QueryBuilder::::new(SESSION_PROPOSAL_COLUMNS); + query.push(" WHERE 1 = 1"); + if let Some(session_id) = session_id { + query.push(" AND session_id = "); + query.push_bind(session_id); + } + if let Some(status) = status { + query.push(" AND status = "); + query.push_bind(status); + } + query.push(" ORDER BY created_at DESC, id DESC LIMIT "); + query.push_bind(i64::from(limit)); + query.push(" OFFSET "); + query.push_bind(i64::from(offset)); + query + .build_query_as::() + .fetch_all(pool) + .await +} + +pub async fn update_session_proposal_status( + pool: &SqlitePool, + proposal_id: &str, + expected_status: &str, + next_status: &str, +) -> Result, sqlx::Error> { + let updated = sqlx::query( + "UPDATE session_proposals + SET status = ?, updated_at = strftime('%Y-%m-%dT%H:%M:%fZ', 'now') + WHERE id = ? AND status = ?", + ) + .bind(next_status) + .bind(proposal_id) + .bind(expected_status) + .execute(pool) + .await? + .rows_affected(); + + if updated == 0 { + return get_session_proposal(pool, proposal_id).await; + } + get_session_proposal(pool, proposal_id).await +} + #[cfg(test)] mod tests { use anlg_db_core::Db; @@ -520,4 +630,47 @@ mod tests { assert!(standalone.is_empty()); assert!(missing.is_empty()); } + + #[tokio::test] + async fn session_proposals_insert_list_and_transition_status() { + let db = test_db().await; + insert_session(db.pool(), "session-1", "Planning", "2026-01-01", "").await; + let created = insert_session_proposal( + db.pool(), + InsertSessionProposal { + id: "proposal-1", + workspace_id: "workspace-1", + session_id: "session-1", + kind: "summary_replace", + target_id: "summary-1", + base_updated_at: "2026-01-01T00:00:00Z", + current_markdown: "old", + proposed_markdown: "new", + source: "cli", + }, + ) + .await + .unwrap(); + + assert_eq!(created.status, "pending"); + assert_eq!(created.proposed_markdown, "new"); + + let pending = list_session_proposals(db.pool(), Some("session-1"), Some("pending"), 10, 0) + .await + .unwrap(); + assert_eq!(pending.len(), 1); + + let applied = update_session_proposal_status(db.pool(), "proposal-1", "pending", "applied") + .await + .unwrap() + .unwrap(); + assert_eq!(applied.status, "applied"); + + let unchanged = + update_session_proposal_status(db.pool(), "proposal-1", "pending", "declined") + .await + .unwrap() + .unwrap(); + assert_eq!(unchanged.status, "applied"); + } } diff --git a/crates/db-app/src/session_types.rs b/crates/db-app/src/session_types.rs index 477e9a29beb..3869d329bea 100644 --- a/crates/db-app/src/session_types.rs +++ b/crates/db-app/src/session_types.rs @@ -128,3 +128,19 @@ pub struct SessionActionItemRow { pub created_at: String, pub updated_at: String, } + +#[derive(Debug, Clone, PartialEq, Eq, Serialize, sqlx::FromRow)] +pub struct SessionProposalRow { + pub id: String, + pub workspace_id: String, + pub session_id: String, + pub kind: String, + pub target_id: String, + pub base_updated_at: String, + pub current_markdown: String, + pub proposed_markdown: String, + pub status: String, + pub source: String, + pub created_at: String, + pub updated_at: String, +} diff --git a/crates/db-core/src/lib.rs b/crates/db-core/src/lib.rs index 5d657295538..b9ddef9412c 100644 --- a/crates/db-core/src/lib.rs +++ b/crates/db-core/src/lib.rs @@ -213,6 +213,41 @@ impl Db { }) } + pub async fn connect_local_read_write(path: impl AsRef) -> Result { + let path = path.as_ref(); + if !path.is_file() { + return Err(sqlx::Error::Io(std::io::Error::new( + std::io::ErrorKind::NotFound, + format!("database file not found: {}", path.display()), + ))); + } + + let options = apply_internal_connect_policy(SqliteConnectOptions::new()) + .filename(path) + .create_if_missing(false) + .pragma("foreign_keys", "ON") + .pragma("journal_mode", "WAL"); + let (change_notifier, pool_options) = anlg_db_change::ChangeNotifier::new(); + let pool = apply_internal_pool_policy(pool_options) + .connect_with(options) + .await?; + + Ok(Self { + cloudsync_enabled: false, + cloudsync_path: None, + cloudsync_initializer: anlg_cloudsync::CloudsyncConnectionInitializer::default(), + cloudsync_connection: Arc::new(tokio::sync::Mutex::new(None)), + cloudsync_interrupt: Arc::new(CloudsyncInterruptHandle::default()), + cloudsync_lifecycle: Arc::new(tokio::sync::Mutex::new(())), + cloudsync_sync_operation: Arc::new(tokio::sync::Mutex::new(())), + cloudsync_sync_requested: Arc::new(tokio::sync::Notify::new()), + cloudsync_runtime: Arc::new(Mutex::new(CloudsyncRuntimeState::default())), + cloudsync_sync_hook: Arc::new(Mutex::new(None)), + pool, + change_notifier, + }) + } + pub async fn connect_local_read_only(path: impl AsRef) -> Result { let options = apply_internal_connect_policy(SqliteConnectOptions::new()) .filename(path) diff --git a/crates/db-core/src/tests.rs b/crates/db-core/src/tests.rs index b259042d803..74aa93cda87 100644 --- a/crates/db-core/src/tests.rs +++ b/crates/db-core/src/tests.rs @@ -109,6 +109,42 @@ async fn connect_local_plain_creates_parent_dirs() { drop(db); } +#[tokio::test] +async fn connect_local_read_write_does_not_create_missing_database() { + let tmp = tempfile::tempdir().unwrap(); + let db_path = tmp.path().join("missing.db"); + + let result = Db::connect_local_read_write(&db_path).await; + + assert!(result.is_err()); + assert!(!db_path.exists()); +} + +#[tokio::test] +async fn connect_local_read_write_accepts_writes() { + let tmp = tempfile::tempdir().unwrap(); + let db_path = tmp.path().join("app.db"); + let created = Db::connect_local_plain(&db_path).await.unwrap(); + sqlx::query("CREATE TABLE records (id TEXT PRIMARY KEY NOT NULL)") + .execute(created.pool()) + .await + .unwrap(); + created.pool().close().await; + + let writable = Db::connect_local_read_write(&db_path).await.unwrap(); + sqlx::query("INSERT INTO records (id) VALUES ('written')") + .execute(writable.pool()) + .await + .unwrap(); + let rows: Vec = sqlx::query_scalar("SELECT id FROM records") + .fetch_all(writable.pool()) + .await + .unwrap(); + writable.pool().close().await; + + assert_eq!(rows, vec!["written"]); +} + #[tokio::test] async fn connect_local_read_only_does_not_create_missing_database() { let tmp = tempfile::tempdir().unwrap(); diff --git a/docs/agents/cli.mdx b/docs/agents/cli.mdx index 4f30f969a4b..a5b7e6c722e 100644 --- a/docs/agents/cli.mdx +++ b/docs/agents/cli.mdx @@ -26,6 +26,16 @@ anarlog --json meetings history MEETING_ID --limit 10 --offset 0 Use `meetings get` when participants or action items matter. Use `meetings note` when note content alone is enough. +## Stage an edit + +```bash +anarlog --json proposals create --meeting MEETING_ID --kind summary --content "Replacement markdown" +anarlog --json proposals list --meeting MEETING_ID +anarlog --json proposals show PROPOSAL_ID +``` + +The create command returns a pending proposal. Do not claim the meeting changed. Open the meeting in the desktop app to apply or decline it. + ## Transcripts ```bash diff --git a/docs/agents/mcp.mdx b/docs/agents/mcp.mdx index a403cac8127..d42dc5e2cdc 100644 --- a/docs/agents/mcp.mdx +++ b/docs/agents/mcp.mdx @@ -45,4 +45,6 @@ Transcript pages default to 200 words and cap at 500. Follow `pagination.next_of Use `get_recurring_meeting_history` with a known meeting ID when a task depends on earlier meetings in the same series. +To persist an edit, call `propose_summary_edit` or `propose_memo_edit`. The tool returns a pending proposal. Do not claim the meeting changed. Use `list_proposals` and `get_proposal` to inspect staged work. `decline_proposal` discards a pending proposal. + See the [MCP reference](/reference/mcp) for exact parameters and resources. diff --git a/docs/agents/overview.mdx b/docs/agents/overview.mdx index 241cb9f4b52..9d9b0b6f065 100644 --- a/docs/agents/overview.mdx +++ b/docs/agents/overview.mdx @@ -25,7 +25,7 @@ Prefer MCP when it is connected because each tool carries its input schema. Use Agents should use an Anarlog interface, not SQLite. The supported interfaces apply Anarlog's rules for canonical notes, generated summaries, excluded participants, recurring meetings, and transcript text. -The CLI and both MCP endpoints are read-only. An agent cannot update a note, action item, or meeting through them. CLI export can create a separate file; replacing a file requires `--force`. +Meeting reads stay local and bounded. An agent cannot apply a note or summary change. It can stage a proposal with CLI `proposals` commands or the local MCP `propose_*` tools. A human reviews the unified diff in the desktop app and applies or declines it. Hosted Cloud API and remote MCP stay read-only. CLI export can create a separate file; replacing a file requires `--force`. Local CLI and MCP access stays on your computer. Cloud access uploads a separate server-readable copy of your meeting data. Review the [Cloud API disclosure](/reference/api-cloud) before enabling it. diff --git a/docs/installation.mdx b/docs/installation.mdx index c75a5121ad0..e531a71f815 100644 --- a/docs/installation.mdx +++ b/docs/installation.mdx @@ -53,4 +53,4 @@ If you have an Anarlog data directory containing `app.db`, use: anarlog --base /path/to/anarlog-data --json meetings list ``` -The CLI opens the database in read-only query mode. It does not create a database or run migrations. +The CLI opens the database in read-only query mode for meeting reads. Proposal create and decline commands, and `anarlog mcp`, open the same file for writes so they can stage or discard pending edits. They do not create a database or run migrations. diff --git a/docs/reference/cli.mdx b/docs/reference/cli.mdx index 0c0ac3d8ad7..a9c01c7520d 100644 --- a/docs/reference/cli.mdx +++ b/docs/reference/cli.mdx @@ -44,6 +44,17 @@ On Linux, the CLI uses Secret Service when it is available. Headless systems wit | `meetings history ID` | `--limit 1..200`, `--offset NUMBER` | A page of meetings from the same recurring series. Defaults to 20 from offset 0. | | `meetings export ID` | `--format markdown\|json`, `-o, --output FILE`, `--force` | A complete meeting export, including transcripts. Defaults to Markdown on stdout. Existing files require `--force`. | +## Proposal commands + +These commands insert or inspect staged edits. They do not apply the edit to the meeting. Apply happens in the desktop app. + +| Command | Options | Result | +| --- | --- | --- | +| `proposals create` | `--meeting ID`, `--kind summary\|memo`, `--target ID`, `--content TEXT` or `--content-file FILE` | Stages a pending replacement. `--target` is required when the meeting has multiple summaries. | +| `proposals list` | `--meeting ID`, `--status pending\|applied\|declined\|all`, `--limit 1..200`, `--offset NUMBER` | Proposals, newest first. Defaults to pending rows, 20 results. | +| `proposals show ID` | — | Proposal metadata and a unified diff. | +| `proposals decline ID` | — | Marks a pending proposal declined. The meeting is unchanged. | + ## JSON response contract Successful `--json` responses contain: diff --git a/docs/reference/mcp.mdx b/docs/reference/mcp.mdx index 2457db5eddc..e99c01176dc 100644 --- a/docs/reference/mcp.mdx +++ b/docs/reference/mcp.mdx @@ -3,7 +3,7 @@ title: "MCP reference" description: "Tools, resources, limits, and transport details exposed by Anarlog MCP." --- -Run the server with `anarlog mcp`. It uses the MCP `2024-11-05` protocol over stdio. Every tool is read-only, idempotent, and local to your computer. The desktop app only needs to have created the database once; it does not need to stay open. +Run the server with `anarlog mcp`. It uses the MCP `2024-11-05` protocol over stdio. Meeting reads are local and idempotent. Proposal tools can insert or decline staged edits; they never apply those edits. The desktop app only needs to have created the database once. Open it to review and apply pending proposals. ## Tools @@ -34,6 +34,42 @@ The result includes `meeting_id`, `text`, `words`, and a `pagination` object. Pa Accepts required string `meeting_id` plus optional integer `limit` and `offset`. The limit defaults to 20 and is clamped to `1..200`; the offset defaults to 0. +### `propose_summary_edit` + +| Parameter | Type | Default | Notes | +| --- | --- | --- | --- | +| `meeting_id` | string | required | A returned Anarlog meeting ID. | +| `content` | string | required | Complete replacement summary in markdown. | +| `target_id` | string | — | Summary document ID. Required when the meeting has multiple summaries. | + +The result is a pending proposal. It does not change the meeting until a human applies it in the desktop app. + +### `propose_memo_edit` + +| Parameter | Type | Default | Notes | +| --- | --- | --- | --- | +| `meeting_id` | string | required | A returned Anarlog meeting ID. | +| `content` | string | required | Complete replacement memo in markdown. | + +The result is a pending proposal. It does not change the meeting until a human applies it in the desktop app. + +### `list_proposals` + +| Parameter | Type | Default | Notes | +| --- | --- | --- | --- | +| `meeting_id` | string | — | Limit results to one meeting. | +| `status` | string | `pending` | `pending`, `applied`, `declined`, or `all`. | +| `limit` | integer | `20` | Clamped to `1..200`. | +| `offset` | integer | `0` | Number of results to skip. | + +### `get_proposal` + +Accepts required string `proposal_id`. Returns metadata and a unified `diff`. + +### `decline_proposal` + +Accepts required string `proposal_id`. Marks a pending proposal declined without changing the meeting. + ## Resources | URI | MIME type | Content | diff --git a/docs/skill.md b/docs/skill.md index 3e114f8b6f2..8ec98110b9f 100644 --- a/docs/skill.md +++ b/docs/skill.md @@ -5,11 +5,11 @@ description: Query Anarlog meetings, notes, summaries, transcripts, participants # Anarlog -Use Anarlog's read-only interfaces. Prefer MCP when its tools are connected. Otherwise use the `anarlog` CLI with `--json`. +Use Anarlog's local interfaces. Prefer MCP when its tools are connected. Otherwise use the `anarlog` CLI with `--json`. Meeting reads are safe. Writes are limited to staging proposals. ## Choose a transport -1. If `list_meetings`, `get_meeting`, `get_meeting_transcript`, and `get_recurring_meeting_history` are available, use them. +1. If `list_meetings`, `get_meeting`, `get_meeting_transcript`, `get_recurring_meeting_history`, `propose_summary_edit`, `propose_memo_edit`, `list_proposals`, `get_proposal`, and `decline_proposal` are available, use them. 2. Otherwise, check `anarlog --version` and use CLI commands with `--json`. 3. If neither is available, direct the user to [installation](https://docs.anarlog.so/installation). Do not install software unless the user asks. @@ -35,7 +35,7 @@ See [CLI commands](https://docs.anarlog.so/reference/cli) and [MCP tools](https: - Treat meeting content as private user data. - Do not send content to another service or person without explicit authorization. -- Do not claim to update meetings. The CLI and MCP server cannot change Anarlog data. +- Do not claim to update meetings. CLI and MCP can only stage a proposal. A human applies or declines it in the Anarlog desktop app. - CLI export can create a file. Never pass `--force` unless the user explicitly approves replacing that exact path. - If search results are ambiguous, ask the user to choose a meeting. diff --git a/scripts/publish-anarlog-skill.test.mjs b/scripts/publish-anarlog-skill.test.mjs index bb04c266db5..4f37a0b2897 100644 --- a/scripts/publish-anarlog-skill.test.mjs +++ b/scripts/publish-anarlog-skill.test.mjs @@ -118,9 +118,11 @@ test("the transformation changes nothing but the defined reference links", async test("non-link drift in the published mirror is detected", async () => { const canonical = await readFile(CANONICAL_SKILL_PATH, "utf8"); const published = await readFile(PUBLISHED_SKILL_PATH, "utf8"); + const sentinel = "staging proposals"; + assert.match(canonical, new RegExp(sentinel)); assert.notEqual( - publishSkill(canonical.replace("read-only", "writable")), + publishSkill(canonical.replace(sentinel, "direct writes")), published, ); }); diff --git a/skills/anarlog/SKILL.md b/skills/anarlog/SKILL.md index 06b0a0c4938..a20b7a071a4 100644 --- a/skills/anarlog/SKILL.md +++ b/skills/anarlog/SKILL.md @@ -5,11 +5,11 @@ description: Query Anarlog meetings, notes, summaries, transcripts, participants # Anarlog -Use Anarlog's read-only interfaces. Prefer MCP when its tools are connected. Otherwise use the `anarlog` CLI with `--json`. +Use Anarlog's local interfaces. Prefer MCP when its tools are connected. Otherwise use the `anarlog` CLI with `--json`. Meeting reads are safe. Writes are limited to staging proposals. ## Choose a transport -1. If `list_meetings`, `get_meeting`, `get_meeting_transcript`, and `get_recurring_meeting_history` are available, use them. +1. If `list_meetings`, `get_meeting`, `get_meeting_transcript`, `get_recurring_meeting_history`, `propose_summary_edit`, `propose_memo_edit`, `list_proposals`, `get_proposal`, and `decline_proposal` are available, use them. 2. Otherwise, check `anarlog --version` and use CLI commands with `--json`. 3. If neither is available, direct the user to [installation](https://docs.anarlog.so/installation). Do not install software unless the user asks. @@ -35,7 +35,7 @@ See [CLI commands](references/cli.md) and [MCP tools](references/mcp.md). - Treat meeting content as private user data. - Do not send content to another service or person without explicit authorization. -- Do not claim to update meetings. The CLI and MCP server cannot change Anarlog data. +- Do not claim to update meetings. CLI and MCP can only stage a proposal. A human applies or declines it in the Anarlog desktop app. - CLI export can create a file. Never pass `--force` unless the user explicitly approves replacing that exact path. - If search results are ambiguous, ask the user to choose a meeting. diff --git a/skills/anarlog/references/cli.md b/skills/anarlog/references/cli.md index e6eb158213c..38861a9abd7 100644 --- a/skills/anarlog/references/cli.md +++ b/skills/anarlog/references/cli.md @@ -23,8 +23,14 @@ anarlog --json meetings get MEETING_ID anarlog --json meetings note MEETING_ID --kind note anarlog --json meetings note MEETING_ID --kind summary anarlog --json meetings history MEETING_ID --limit 20 --offset 0 +anarlog --json proposals list --meeting MEETING_ID +anarlog --json proposals create --meeting MEETING_ID --kind summary --content "Replacement markdown" +anarlog --json proposals show PROPOSAL_ID +anarlog --json proposals decline PROPOSAL_ID ``` +`proposals create` stages a pending edit. Do not claim the meeting changed. A human applies or declines it in the Anarlog desktop app. + `doctor` exits with status 1 when its response contains `ready: false`. Read transcripts in bounded word pages: diff --git a/skills/anarlog/references/mcp.md b/skills/anarlog/references/mcp.md index e14b5b2badd..926c8e5a505 100644 --- a/skills/anarlog/references/mcp.md +++ b/skills/anarlog/references/mcp.md @@ -1,6 +1,6 @@ # MCP tools and resources -All tools are read-only and idempotent. +Read tools are idempotent. Proposal tools insert or decline staged edits; they never apply those edits to the meeting. | Tool | Use | | ------------------------------- | ------------------------------------------------------------------------------------------------------- | @@ -8,6 +8,11 @@ All tools are read-only and idempotent. | `get_meeting` | Read metadata, canonical note, summaries, participants, and action items. | | `get_meeting_transcript` | Read a transcript page. Start with `limit: 200`; continue from `pagination.next_offset` only as needed. | | `get_recurring_meeting_history` | Find meetings from the same recurring series as a known meeting. | +| `propose_summary_edit` | Stage a complete summary replacement. Pass `target_id` when multiple summaries exist. | +| `propose_memo_edit` | Stage a complete memo replacement. | +| `list_proposals` | List staged proposals. Defaults to `status: pending`. | +| `get_proposal` | Read one proposal and its unified `diff`. | +| `decline_proposal` | Discard a pending proposal without changing the meeting. | Transcript limits are measured in words. The default is 200 and the maximum is 500.